DicomObjects.NET10 Documentation
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 SkiaSharp.SKPoint _
    ) As SkiaSharp.SKPoint3
    'Usage
     
    
    Dim instance As Plane3D
    Dim p1 As SkiaSharp.SKPoint
    Dim value As SkiaSharp.SKPoint3
     
    value = instance.To3D(p1)
    public SkiaSharp.SKPoint3 To3D( 
       SkiaSharp.SKPoint p1
    )
    public:
    SkiaSharp.SKPoint3 To3D( 
       SkiaSharp.SKPoint 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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also