|
Vector3LessThan Operator
|
Compare vectors.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static bool operator <(
Vector3 a,
Vector3 b
)
Public Shared Operator < (
a As Vector3,
b As Vector3
) As Boolean
public:
static bool operator <(
Vector3 a,
Vector3 b
)
static let inline (<)
a : Vector3 *
b : Vector3 : bool
Parameters
- a
- Type: Karamba.GeometryVector3
First vector. - b
- Type: Karamba.GeometryVector3
Second vector.
Return Value
Type:
BooleanTrue if all components of a are smaller then those of b.
See Also