|
Point3GreaterThan Operator
|
Compare two points for greater 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 components of a are larger than those of b.
See Also