File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,26 @@ namespace GEO {
113
113
*/
114
114
typedef vecng<4 , Numeric::int32> vec4i;
115
115
116
+ /* *
117
+ * \brief Represents points and vectors in 2d with
118
+ * unsigned integer coordinates.
119
+ * \details Syntax is (mostly) compatible with GLSL.
120
+ */
121
+ typedef vecng<2 , Numeric::uint32> vec2u;
122
+
123
+ /* *
124
+ * \brief Represents points and vectors in 3d with
125
+ * unsigned integer coordinates.
126
+ * \details Syntax is (mostly) compatible with GLSL.
127
+ */
128
+ typedef vecng<3 , Numeric::uint32> vec3u;
129
+
130
+ /* *
131
+ * \brief Represents points and vectors in 4d with
132
+ * unsigned integer coordinates.
133
+ * \details Syntax is (mostly) compatible with GLSL.
134
+ */
135
+ typedef vecng<4 , Numeric::uint32> vec4u;
116
136
117
137
/* *
118
138
* \brief Represents a 2x2 matrix.
You can’t perform that action at this time.
0 commit comments