| 
            
              RhinoSurfaceClosestPoint Method 
             | 
          
        
         
            Input the parameters of the point on the surface that is closest to testPoint.
            
 
    Namespace: 
   Karamba.GHopper.Geometry
    Assembly:
   Karamba3D (in Karamba3D.dll) Version: 2.2.0.5 (2.2.0.5)
Syntaxpublic bool ClosestPoint(
	Point3 testPoint,
	out double u,
	out double v
)
Public Function ClosestPoint ( 
	testPoint As Point3,
	<OutAttribute> ByRef u As Double,
	<OutAttribute> ByRef v As Double
) As Boolean
public:
virtual bool ClosestPoint(
	Point3 testPoint, 
	[OutAttribute] double% u, 
	[OutAttribute] double% v
) sealed
abstract ClosestPoint : 
        testPoint : Point3 * 
        u : float byref * 
        v : float byref -> bool 
override ClosestPoint : 
        testPoint : Point3 * 
        u : float byref * 
        v : float byref -> bool Parameters
- testPoint
 - Type: Karamba.GeometryPoint3
A point to test against. - u
 - Type: SystemDouble
U parameter of the surface that is closest to testPoint. - v
 - Type: SystemDouble
V parameter of the surface that is closest to testPoint. 
Return Value
Type: 
Booleantrue on success, false on failure.
Implements
ISurfaceClosestPoint(Point3, Double, Double)
See Also