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))
347 return Scalar.abs(self).toUint()
350 return Scalar.__neg__(self).toUint()
353 return Scalar.__add__(self, val).toUint()
359 return Scalar.__mul__(self, val).toUint()
362 return Scalar.__div__(self, val).toUint()
418 def toUint(self): return UVec2(int(self.x), int(self.y))
505 return Vec2.abs(self).toUint()
529 def toUint(self): return UVec3(int(self.x), int(self.y), int(self.z))
623 return Vec3.abs(self).toUint()
649 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w))
737 return Vec4.abs(self).toUint()