Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / Project Method / Project(Point3D,Double,Boolean,Point2D,Point2D) 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.
When true, the projection is not constrained inside the surface domain
The parametric coordinates of a previous succesful point projection
The parametric coordinates of the projection on surface to P

In This Topic
    Project(Point3D,Double,Boolean,Point2D,Point2D) Method
    In This Topic
    Projects a point on the surface.
    Syntax
    'Declaration
     
    Public Overloads Function Project( _
       ByVal P As Point3D, _
       ByVal coincTol As Double, _
       ByVal allowOutside As Boolean, _
       ByVal prev As Point2D, _
       ByRef proj As Point2D _
    ) As Boolean
    public bool Project( 
       Point3D P,
       double coincTol,
       bool allowOutside,
       Point2D prev,
       out Point2D proj
    )

    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.
    allowOutside
    When true, the projection is not constrained inside the surface domain
    prev
    The parametric coordinates of a previous succesful point projection
    proj
    The parametric coordinates of the projection on surface to P

    Return Value

    True when the projection is perpendicular to the surface, false otherwise.
    See Also