| 
            
              RhinoSurfaceNormalAt Method 
             | 
          
        
         
            Computes the surface normal at a point.
            
This is the simple evaluation call - it does not support error handling.
 
    Namespace: 
   Karamba.GHopper.Geometry
    Assembly:
   Karamba3D (in Karamba3D.dll) Version: 2.2.0.5 (2.2.0.5)
Syntaxpublic Vector3 NormalAt(
	double u,
	double v
)
Public Function NormalAt ( 
	u As Double,
	v As Double
) As Vector3
public:
virtual Vector3 NormalAt(
	double u, 
	double v
) sealed
abstract NormalAt : 
        u : float * 
        v : float -> Vector3 
override NormalAt : 
        u : float * 
        v : float -> Vector3 Parameters
- u
 - Type: SystemDouble
A U parameter. - v
 - Type: SystemDouble
A V parameter. 
Return Value
Type: 
Vector3The normal.
Implements
ISurfaceNormalAt(Double, Double)
See Also