DicomObjects.NET.V8
DicomObjects Namespace / Plane3D Structure / To3D Method



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

    Parameters

    p1

    Return Value

    The real world coordinates of the point on the plane specified by the 2D coordinates, in the arbitrary frame of reference
    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