Lines Matching defs:__init__
33 def __init__(self, name, description, children):
39 def __init__(self):
144 def __init__(self):
229 def __init__(self, x):
337 def __init__(self, x):
386 def __init__(self):
396 def __init__(self, x, y):
491 def __init__(self, x, y):
494 Vec2.__init__(self, x, y)
506 def __init__(self, x, y, z):
609 def __init__(self, x, y, z):
612 Vec3.__init__(self, x, y, z)
624 def __init__(self, x, y, z, w):
723 def __init__(self, x, y, z, w):
726 Vec4.__init__(self, x, y, z, w)
739 def __init__ (self, numCols, numRows, scalars):
805 def __init__(self, m00, m01, m10, m11):
806 Mat.__init__(self, 2, 2, [m00, m10, m01, m11])
809 def __init__(self, m00, m01, m02, m10, m11, m12, m20, m21, m22):
810 Mat.__init__(self, 3, 3, [m00, m10, m20,
815 def __init__(self, m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, m31, m32, m33):
816 Mat.__init__(self, 4, 4, [m00, m10, m20, m30,