|
Point3Subtraction Operator (Point3, Point3)
|
Subtract two points to get a vector.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static Vector3 operator -(
Point3 a,
Point3 b
)
Public Shared Operator - (
a As Point3,
b As Point3
) As Vector3
public:
static Vector3 operator -(
Point3 a,
Point3 b
)
static let inline (-)
a : Point3 *
b : Point3 : Vector3Parameters
- a
- Type: Karamba.GeometryPoint3
First point: head of the new vector. - b
- Type: Karamba.GeometryPoint3
Second point.
Return Value
Type:
Vector3Difference vector.
See Also