@@ -88,19 +88,19 @@ using VectorGrid = Vec3fGrid;
8888// / @name Lists of native Grid Types
8989// / @{
9090// / The floating point Grid types which OpenVDB will register by default.
91- using FloatGridTypes = TypeList<FloatGrid, DoubleGrid>;
91+ using RealGridTypes = TypeList<FloatGrid, DoubleGrid>;
9292// / The integer Grid types which OpenVDB will register by default.
9393using IntegerGridTypes = TypeList<Int32Grid, Int64Grid>;
9494// / The scalar Grid types which OpenVDB will register by default. This is a
9595// / combination of native floating point and integer grid types. Note that
9696// / this list does not include Bool or Mask Grids.
97- using ScalarGridTypes = FloatGridTypes ::Append<IntegerGridTypes>;
97+ using NumericGridTypes = RealGridTypes ::Append<IntegerGridTypes>;
9898// / The Vec3 Grid types which OpenVDB will register by default.
9999using Vec3GridTypes = TypeList<Vec3IGrid, Vec3SGrid, Vec3DGrid>;
100100
101101// / The Grid types which OpenVDB will register by default.
102102using GridTypes =
103- ScalarGridTypes ::
103+ NumericGridTypes ::
104104 Append<Vec3GridTypes>::
105105 Append<tools::PointIndexGrid>::
106106 // #define unfortunately required for one of the tests that removes this alias
@@ -114,7 +114,7 @@ using GridTypes =
114114// / @name Lists of native TypedAttributeArray Types (for PointDataGrids)
115115// / @{
116116// / The floating point attribute array types which OpenVDB will register by default.
117- using FloatAttributeTypes = TypeList<
117+ using RealAttributeTypes = TypeList<
118118 points::TypedAttributeArray<float >,
119119 points::TypedAttributeArray<double >,
120120 points::TypedAttributeArray<float , points::TruncateCodec>,
@@ -131,8 +131,8 @@ using IntegerAttributeTypes = TypeList<
131131// / The scalar attribute array types which OpenVDB will register by default.
132132// / This is a combination of native floating point and integer array types.
133133// / Note that this list does not include bool arrays.
134- using ScalarAttributeTypes =
135- FloatAttributeTypes ::Append<IntegerAttributeTypes>;
134+ using NumericAttributeTypes =
135+ RealAttributeTypes ::Append<IntegerAttributeTypes>;
136136// / The Vec3 attribute array types which OpenVDB will register by default.
137137using Vec3AttributeTypes = TypeList<
138138 points::TypedAttributeArray<math::Vec3<int32_t >>,
@@ -163,7 +163,7 @@ using QuatAttributeTypes = TypeList<
163163
164164// / The attribute array types which OpenVDB will register by default.
165165using AttributeTypes =
166- ScalarAttributeTypes ::
166+ NumericAttributeTypes ::
167167 Append<Vec3AttributeTypes>::
168168 Append<Mat3AttributeTypes>::
169169 Append<Mat4AttributeTypes>::
0 commit comments