Get the value of the plane equation at the point.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.7
Syntax public double ValueAt(
Point3d p
)
Public Function ValueAt (
p As Point3d
) As Double
Parameters
- p
- Type: Rhino.GeometryPoint3d
evaluation point.
Return Value
Type:
Doublereturns pe[0]*p.X + pe[1]*p.Y + pe[2]*p.Z + pe[3] where
pe[0], pe[1], pe[2] and pe[3] are the coefficients of the plane equation.
See Also