Blender V5.0
blender::nodes::node_geo_field_min_and_max_cc::MinMaxInfo< T > Struct Template Reference

Static Public Attributes

static const T min_initial_value
static const T max_initial_value

Detailed Description

template<typename T>
struct blender::nodes::node_geo_field_min_and_max_cc::MinMaxInfo< T >

Definition at line 120 of file node_geo_field_min_and_max.cc.

Member Data Documentation

◆ max_initial_value

template<typename T>
const T blender::nodes::node_geo_field_min_and_max_cc::MinMaxInfo< T >::max_initial_value
inlinestatic
Initial value:
= []() {
if constexpr (std::is_same_v<T, float3>) {
return float3(std::numeric_limits<float>::lowest());
}
else {
return std::numeric_limits<T>::lowest();
}
}()
VecBase< float, 3 > float3

Definition at line 130 of file node_geo_field_min_and_max.cc.

◆ min_initial_value

template<typename T>
const T blender::nodes::node_geo_field_min_and_max_cc::MinMaxInfo< T >::min_initial_value
inlinestatic
Initial value:
= []() {
if constexpr (std::is_same_v<T, float3>) {
return float3(std::numeric_limits<float>::max());
}
else {
return std::numeric_limits<T>::max();
}
}()

Definition at line 121 of file node_geo_field_min_and_max.cc.


The documentation for this struct was generated from the following file: