Point3dDistanceToSquared Method |
Computes the square of the distance between two points.
This method is usually largely faster than DistanceTo().
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public double DistanceToSquared(
Point3d other
)
Public Function DistanceToSquared (
other As Point3d
) As Double
Parameters
- other
- Type: Rhino.GeometryPoint3d
Other point for squared distance measurement.
Return Value
Type:
DoubleThe squared length of the line between this and the other point; or 0 if any of the points is not valid.
See Also