Lines Matching defs:__init__
33 def __init__(self, name, description, children):
39 def __init__(self):
144 def __init__(self):
229 def __init__(self, x):
339 def __init__(self, x):
388 def __init__(self):
398 def __init__(self, x, y):
493 def __init__(self, x, y):
496 Vec2.__init__(self, x, y)
508 def __init__(self, x, y, z):
611 def __init__(self, x, y, z):
614 Vec3.__init__(self, x, y, z)
626 def __init__(self, x, y, z, w):
725 def __init__(self, x, y, z, w):
728 Vec4.__init__(self, x, y, z, w)
741 def __init__ (self, numCols, numRows, scalars):
807 def __init__(self, m00, m01, m10, m11):
808 Mat.__init__(self, 2, 2, [m00, m10, m01, m11])
811 def __init__(self, m00, m01, m02, m10, m11, m12, m20, m21, m22):
812 Mat.__init__(self, 3, 3, [m00, m10, m20,
817 def __init__(self, m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, m31, m32, m33):
818 Mat.__init__(self, 4, 4, [m00, m10, m20, m30,