|
Point3Division Operator
|
Divide point by constant.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static Point3 operator /(
Point3 a,
double c
)
Public Shared Operator / (
a As Point3,
c As Double
) As Point3
public:
static Point3 operator /(
Point3 a,
double c
)
static let inline (/)
a : Point3 *
c : float : Point3
Parameters
- a
- Type: Karamba.GeometryPoint3
Point to be divided. - c
- Type: SystemDouble
Divisor.
Return Value
Type:
Point3The scaled vector.
See Also