Solid Edge Part Type Library
Convert3DCoordinate Method
Specifies the x coordinate of the 3-D point that is to be converted.
Specifies the y coordinate of the 3-D point that is to be converted.
Specifies the z coordinate of the 3-D point that is to be converted.
Returns the x coordinate of the 2-D point.
Returns the y coordinate of the 2-D point.
Description
Returns the 2-D projection of a 3-D point in the profile plane.
Syntax
Visual Basic
Public Sub Convert3DCoordinate( _
   ByVal x3d As Double, _
   ByVal y3d As Double, _
   ByVal z3d As Double, _
   ByRef x2d As Double, _
   ByRef y2d As Double _
) 
Parameters
x3d
Specifies the x coordinate of the 3-D point that is to be converted.
y3d
Specifies the y coordinate of the 3-D point that is to be converted.
z3d
Specifies the z coordinate of the 3-D point that is to be converted.
x2d
Returns the x coordinate of the 2-D point.
y2d
Returns the y coordinate of the 2-D point.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objProfile As SolidEdgePart.Profile
    Dim objPlane As SolidEdgePart.RefPlane
    Dim x As Double
    Dim y As Double
    Dim sDumpStatus As String    ' Used for temporary storage of datadump return string
    ' Report errors
    Const PI = 3.14159265358979
    ' Create/get the application with specific settings
    On Error Resume Next
    Set objApp = GetObject(, "SolidEdge.Application")
    If Err Then
        Err.Clear
        Set objApp = CreateObject("SolidEdge.Application")
        Set objDoc = objApp.Documents.Add("SolidEdge.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    ' Create a Profile
    Set objPlane = objDoc.RefPlanes.AddParallelByDistance(ParentPlane:=objDoc.RefPlanes(1), _
                                                          Distance:=0.05, NormalSide:=igRight)
    Set objProfile = objDoc.ProfileSets.Add.Profiles.Add(pRefPlaneDisp:=objPlane)
    ' Calling the Convert2DCoordinate method to convert 3d point to 2d Coordinate
    Call objProfile.Convert3DCoordinate(x3d:=1, y3d:=1, z3d:=1, x2d:=x, y2d:=y)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objProfile = Nothing
End Sub
See Also

Profile Object  | Profile Members