|
Point3LessThan Operator
|
Compare points for smaller than.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static bool operator <(
Point3 a,
Point3 b
)
Public Shared Operator < (
a As Point3,
b As Point3
) As Boolean
public:
static bool operator <(
Point3 a,
Point3 b
)
static let inline (<)
a : Point3 *
b : Point3 : bool
Parameters
- a
- Type: Karamba.GeometryPoint3
First point. - b
- Type: Karamba.GeometryPoint3
Second point.
Return Value
Type:
BooleanTrue if all a-components are smaller than the b-components.
See Also