DicomObjects.NET.V8
DicomObjects Namespace / Plane3D Structure / To2D(Point3D) Method



In This Topic
    To2D(Point3D) Method
    In This Topic
    Convert from real world coordinates to the arbitrary frame of reference for this plane
    Syntax
    'Declaration
     
    Public Function To2D( _
       ByVal p1 As Point3D _
    ) As PointF
    'Usage
     
    Dim instance As Plane3D
    Dim p1 As Point3D
    Dim value As PointF
     
    value = instance.To2D(p1)
    public PointF To2D( 
       Point3D p1
    )
    public:
    PointF To2D( 
       Point3D p1
    ) 

    Parameters

    p1

    Return Value

    The 2D coordinates, in the arbitrary frame of reference, of the point on the plane closest to the given real world coordinates
    Remarks
    In order to provide consistent display of 2D labels on 3D images, despite rotation of the 3D image, coordinates for 3D labels are treated as being relative to an arbitrary coordinate system, which is based on the direction of the normal to the plane.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also