Multi-purpose 3D float vector struct with confidence value. More...
Public Member Functions | |
| Point3Dcf (float x, float y, float z) | |
| Constructor. | |
| Point3Dcf (float x, float y, float z, float confidence) | |
| Constructor. | |
| override bool | Equals (object obj) |
| Indicates whether this instance and the given obj are equal. | |
| bool | Equals (Point3Dcf obj) |
| Indicates whether this instance and the given obj are equal. | |
| override int | GetHashCode () |
| Returns the hash code for this instance. | |
| Point3Df | ToPoint3Df () |
| Converts this point to a Point3Df. | |
| override string | ToString () |
| String conversion. | |
| Point3Df | CrossProduct (Point3Dcf v2) |
| Calculates the crossproduct of this vector and the given v2 . | |
Static Public Member Functions | |
| static bool | operator== (Point3Dcf lhs, Point3Dcf rhs) |
| Equality comparison operator. | |
| static bool | operator!= (Point3Dcf lhs, Point3Dcf rhs) |
| Inequality comparison operator. | |
| static Point3Dcf | operator- (Point3Dcf lhs, Point3Dcf rhs) |
| Subtraction operator. | |
| static Point3Dcf | operator+ (Point3Dcf lhs, Point3Dcf rhs) |
| Addition operator. | |
Properties | |
| float | X [get, set] |
| X-coordinate. | |
| float | Y [get, set] |
| Y-coordinate. | |
| float | Z [get, set] |
| Z-coordinate. | |
| float | C [get, set] |
| Confidence-component. | |
| float | this[int row] [get, set] |
| Index access. | |
Multi-purpose 3D float vector struct with confidence value.
| Point3Dcf | ( | float | x, |
| float | y, | ||
| float | z ) |
Constructor.
| x | X-coordinate. |
| y | Y-Coordinate. |
| z | Z-coordinate |
| Point3Dcf | ( | float | x, |
| float | y, | ||
| float | z, | ||
| float | confidence ) |
Constructor.
| x | X-coordinate. |
| y | Y-Coordinate. |
| z | Z-coordinate |
| confidence | Confidence-component (0 is invalid; 1 is 100% valid). |
Calculates the crossproduct of this vector and the given v2 .
| v2 | Vector to build crossproduct with. |
| override bool Equals | ( | object | obj | ) |
Indicates whether this instance and the given obj are equal.
| obj | Object to compare to. |
| bool Equals | ( | Point3Dcf | obj | ) |
Indicates whether this instance and the given obj are equal.
| obj | Object to compare to. |
| override int GetHashCode | ( | ) |
Returns the hash code for this instance.
Inequality comparison operator.
| lhs | Left hand side operand. |
| rhs | Right hand side operand. |
Addition operator.
| lhs | Left hand side operand. |
| rhs | Right hand side operand. |
Subtraction operator.
| lhs | Left hand side operand. |
| rhs | Right hand side operand. |
Equality comparison operator.
| lhs | Left hand side operand. |
| rhs | Right hand side operand. |
| override string ToString | ( | ) |
String conversion.
|
getset |
Confidence-component.
0 means invalid; 1 means 100% valid.
|
getset |