Lines Matching refs:toUint
117 def toUint(lst): return [Uint(int(v.x)) for v in lst]
128 def toUVec4(lst): return [v.toUint().toUVec4() for v in lst]
129 def toUVec3(lst): return [v.toUint().toUVec3() for v in lst]
130 def toUVec2(lst): return [v.toUint().toUVec2() for v in lst]
257 def toUint(self): return Uint(int(self.x))
345 return Scalar.abs(self).toUint()
348 return Scalar.__neg__(self).toUint()
351 return Scalar.__add__(self, val).toUint()
357 return Scalar.__mul__(self, val).toUint()
360 return Scalar.__div__(self, val).toUint()
416 def toUint(self): return UVec2(int(self.x), int(self.y))
503 return Vec2.abs(self).toUint()
527 def toUint(self): return UVec3(int(self.x), int(self.y), int(self.z))
621 return Vec3.abs(self).toUint()
647 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w))
735 return Vec4.abs(self).toUint()