Public Member Functions | |
| Vector3d | __add__ (self, Vector3d b) |
| bool | __eq__ (self, Vector3d b) |
| float | __getitem__ (self, int e) |
| float | __getitem__ (self, int e) |
| Vector3d | __iadd__ (self, Vector3d b) |
| Vector3d | __imatmul__ (self, float b) |
| None | __init__ (self) |
| None | __init__ (self, float x, float y, float z) |
| None | __init__ (self, Vector3f v) |
| None | __init__ (self, Vector3d arg0) |
| Vector3d | __isub__ (self, Vector3d b) |
| typing.Iterator[float] | __iter__ (self) |
| Vector3d | __itruediv__ (self, float b) |
| Vector3d | __mul__ (self, float a) |
| bool | __ne__ (self, Vector3d b) |
| Vector3d | __neg__ (self) |
| Vector3d | __pos__ (self) |
| str | __repr__ (self) |
| Vector3d | __rmul__ (self, float b) |
| None | __setitem__ (self, int arg0, float arg1) |
| Vector3d | __sub__ (self, Vector3d b) |
| Vector3d | __truediv__ (self, float a) |
| Vector3d | furthestBasisVector (self) |
| bool | isFinite (self) |
| float | length (self) |
| float | lengthSq (self) |
| Vector3d | normalized (self) |
| tuple[Vector3d, Vector3d] | perpendicular (self) |
| Vector3d | transformed (self, AffineXf3d xf) |
| None | unsignZeroValues (self) |
Static Public Member Functions | |
| None | __init__ (*args, **kwargs) |
| None | __init__ (*args, **kwargs) |
| Vector3d | diagonal (float a) |
| Vector3d | minusX () |
| Vector3d | minusY () |
| Vector3d | minusZ () |
| Vector3d | operator (*args, **kwargs) |
| Vector3d | operator (*args, **kwargs) |
| Vector3d | plusX () |
| Vector3d | plusY () |
| Vector3d | plusZ () |
Static Public Attributes | |
| typing | elements = 3 |
Static Protected Attributes | |
| typing | _offsetof_x = 0 |
| typing | _offsetof_y = 8 |
| typing | _offsetof_z = 16 |
Generated from: MR::Vector3d Aliases: RigidScaleXf3_double_V, Matrix3_double_VectorType, RigidXf3_double_V
|
static |
|
static |
| None mrmeshpy.Vector3d.__init__ | ( | self | ) |
| None mrmeshpy.Vector3d.__init__ | ( | self, | |
| float | x, | ||
| float | y, | ||
| float | z ) |
| None mrmeshpy.Vector3d.__init__ | ( | self, | |
| Vector3f | v ) |
Here `T == U` doesn't seem to cause any issues in the C++ code, but we're still disabling it because it somehow gets emitted when generating the bindings, and looks out of place there.
| None mrmeshpy.Vector3d.__init__ | ( | self, | |
| Vector3d | arg0 ) |
Implicit copy constructor.
| bool mrmeshpy.Vector3d.__eq__ | ( | self, | |
| Vector3d | b ) |
| float mrmeshpy.Vector3d.__getitem__ | ( | self, | |
| int | e ) |
| float mrmeshpy.Vector3d.__getitem__ | ( | self, | |
| int | e ) |
| Vector3d mrmeshpy.Vector3d.__imatmul__ | ( | self, | |
| float | b ) |
| typing.Iterator[float] mrmeshpy.Vector3d.__iter__ | ( | self | ) |
| Vector3d mrmeshpy.Vector3d.__itruediv__ | ( | self, | |
| float | b ) |
| Vector3d mrmeshpy.Vector3d.__mul__ | ( | self, | |
| float | a ) |
| bool mrmeshpy.Vector3d.__ne__ | ( | self, | |
| Vector3d | b ) |
| Vector3d mrmeshpy.Vector3d.__neg__ | ( | self | ) |
| Vector3d mrmeshpy.Vector3d.__pos__ | ( | self | ) |
NOTE: We use `std::declval()` in the operators below because libclang 18 in our binding generator is bugged and chokes on decltyping `a.x` and such. TODO fix this when we update libclang.
| str mrmeshpy.Vector3d.__repr__ | ( | self | ) |
| Vector3d mrmeshpy.Vector3d.__rmul__ | ( | self, | |
| float | b ) |
| None mrmeshpy.Vector3d.__setitem__ | ( | self, | |
| int | arg0, | ||
| float | arg1 ) |
| Vector3d mrmeshpy.Vector3d.__truediv__ | ( | self, | |
| float | a ) |
|
static |
| Vector3d mrmeshpy.Vector3d.furthestBasisVector | ( | self | ) |
| bool mrmeshpy.Vector3d.isFinite | ( | self | ) |
| float mrmeshpy.Vector3d.length | ( | self | ) |
| float mrmeshpy.Vector3d.lengthSq | ( | self | ) |
|
static |
|
static |
|
static |
| Vector3d mrmeshpy.Vector3d.normalized | ( | self | ) |
|
static |
|
static |
|
static |
|
static |
|
static |
| Vector3d mrmeshpy.Vector3d.transformed | ( | self, | |
| AffineXf3d | xf ) |
returns this vector transformed by xf if it is
| None mrmeshpy.Vector3d.unsignZeroValues | ( | self | ) |
get rid of signed zero values to be sure that equal vectors have identical binary representation
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
static |