Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / Curvature Method / Curvature(Point2D,Double,Double) Method
The point in parametric domain
Gaussian curvature = kappa1*kappa2
Mean curvature = (kappa1+kappa2)/2

In This Topic
    Curvature(Point2D,Double,Double) Method
    In This Topic
    Evaluates the surface Gaussian and Mean curvatures at the specified 2D point.
    Syntax
    'Declaration
     
    Public Overloads Sub Curvature( _
       ByVal pt As Point2D, _
       ByRef gauss As Double, _
       ByRef mean As Double _
    ) 
    public void Curvature( 
       Point2D pt,
       out double gauss,
       out double mean
    )

    Parameters

    pt
    The point in parametric domain
    gauss
    Gaussian curvature = kappa1*kappa2
    mean
    Mean curvature = (kappa1+kappa2)/2
    See Also