is a 3d vector that responds to both .x... and [0]...
|
__init__(self,
x,
y=None,
z=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
__mul__(self,
other)
does either scalar multiplication if other is not a Vector3, or a
scalar product. |
source code
|
|
|
__rmul__(self,
other)
does either scalar multiplication if other is not a Vector3, or a
scalar product. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|