Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / PointInversion Method / PointInversion(Point3D,Double,Double,Double) Method
The 3D point to project
Relevant only when P lays on the surface. When the distance between P and its projection is smaller then this value, the projection is considered succesful.
The U parametric coordinate of the projection on surface to P
The V parametric coordinate of the projection on surface to P

In This Topic
    PointInversion(Point3D,Double,Double,Double) Method
    In This Topic
    Projects a point on the surface. The point must already lay on the surface.
    Syntax
    'Declaration
     
    Public Overloads Overridable Function PointInversion( _
       ByVal P As Point3D, _
       ByVal coincTol As Double, _
       ByRef u As Double, _
       ByRef v As Double _
    ) As Boolean
    public virtual bool PointInversion( 
       Point3D P,
       double coincTol,
       out double u,
       out double v
    )

    Parameters

    P
    The 3D point to project
    coincTol
    Relevant only when P lays on the surface. When the distance between P and its projection is smaller then this value, the projection is considered succesful.
    u
    The U parametric coordinate of the projection on surface to P
    v
    The V parametric coordinate of the projection on surface to P
    See Also