three-dimensional vector Generated from class MR.Vector3d. This is the by-value version of the struct.
More...
Inheritance diagram for MR.Vector3d:Public Member Functions | |
| Vector3d (Vector3d _other) | |
| Generated copy constructor. | |
| unsafe | Vector3d () |
| Constructs an empty (default-constructed) instance. | |
| unsafe | Vector3d (MR.Const_NoInit _1) |
Generated from constructor MR.Vector3d.Vector3d. | |
| unsafe | Vector3d (double x, double y, double z) |
Generated from constructor MR.Vector3d.Vector3d. | |
| unsafe | Vector3d (in MR.Vector3f v) |
Generated from constructor MR.Vector3d.Vector3d. | |
| unsafe ref double | index (int e) |
Generated from method MR.Vector3d.operator[]. | |
| readonly unsafe double | lengthSq () |
Generated from method MR.Vector3d.lengthSq. | |
| readonly unsafe double | length () |
Generated from method MR.Vector3d.length. | |
| readonly unsafe MR.Vector3d | normalized () |
Generated from method MR.Vector3d.normalized. | |
| readonly unsafe MR.Vector3d | furthestBasisVector () |
returns one of 3 basis unit vector that makes the biggest angle with the direction specified by this Generated from method MR.Vector3d.furthestBasisVector. | |
| readonly unsafe MR.Std.Pair_MRVector3d_MRVector3d | perpendicular () |
returns 2 unit vector, which together with this vector make an orthogonal basis Currently not implemented for integral vectors. Generated from method MR.Vector3d.perpendicular. | |
| readonly unsafe MR.Vector3d | transformed (MR.AffineXf3d? xf) |
returns this vector transformed by xf if it is Generated from method MR.Vector3d.transformed<double>. | |
| unsafe void | unsignZeroValues () |
get rid of signed zero values to be sure that equal vectors have identical binary representation Generated from method MR.Vector3d.unsignZeroValues. | |
| readonly unsafe bool | isFinite () |
Generated from method MR.Vector3d.isFinite. | |
| unsafe ref MR.Vector3d | addAssign (in MR.Vector3d b) |
Generated from function MR.operator+=. | |
| unsafe ref MR.Vector3d | subAssign (in MR.Vector3d b) |
Generated from function MR.operator-=. | |
| unsafe ref MR.Vector3d | mulAssign (double b) |
Generated from function MR.operator*=. | |
| unsafe ref MR.Vector3d | divAssign (double b) |
Generated from function MR.operator/=. | |
| bool | Equals (MR.Vector3d b) |
| override bool | Equals (object? other) |
Static Public Member Functions | |
| static implicit | operator Vector3d (ConstBox_Vector3d other) |
| Copy contents from a wrapper class to this struct. | |
| static MR.Vector3d | diagonal (double a) |
Generated from method MR.Vector3d.diagonal. | |
| static MR.Vector3d | plusX () |
Generated from method MR.Vector3d.plusX. | |
| static MR.Vector3d | plusY () |
Generated from method MR.Vector3d.plusY. | |
| static MR.Vector3d | plusZ () |
Generated from method MR.Vector3d.plusZ. | |
| static MR.Vector3d | minusX () |
Generated from method MR.Vector3d.minusX. | |
| static MR.Vector3d | minusY () |
Generated from method MR.Vector3d.minusY. | |
| static MR.Vector3d | minusZ () |
Generated from method MR.Vector3d.minusZ. | |
| static unsafe bool | operator== (MR.Vector3d a, MR.Vector3d b) |
Generated from function MR.operator==. | |
| static unsafe bool | operator!= (MR.Vector3d a, MR.Vector3d b) |
| static unsafe MR.Misc.ConstRef< MR.Vector3d > | operator+ (MR.Vector3d a) |
Generated from function MR.operator+. | |
| static unsafe MR.Vector3d | operator- (MR.Vector3d a) |
Generated from function MR.operator-. | |
| static unsafe MR.Vector3d | operator+ (MR.Vector3d a, in MR.Vector3d b) |
Generated from function MR.operator+. | |
| static unsafe MR.Vector3d | operator- (MR.Vector3d a, in MR.Vector3d b) |
Generated from function MR.operator-. | |
| static unsafe MR.Vector3d | operator* (double a, MR.Vector3d b) |
Generated from function MR.operator*. | |
| static unsafe MR.Vector3d | operator* (MR.Vector3d b, double a) |
Generated from function MR.operator*. | |
| static MR.Vector3d | operator/ (MR.Vector3d b, double a) |
Generated from function MR.operator/. | |
Public Attributes | |
| double | x |
| double | y |
| double | z |
Properties | |
| readonly unsafe double | this[int e] [get] |
Generated from method MR.Vector3d.operator[]. | |
three-dimensional vector Generated from class MR.Vector3d. This is the by-value version of the struct.