Solid Edge FrameworkSupport Type Library
AddByCenterStartEnd Method
Specifies the coordinates of the center point of the arc.
Specifies the coordinates of the center point of the arc.
Specifies the coordinates of the start point of the arc.
Specifies the coordinates of the start point of the arc.
Specifies the coordinates of the end point of the arc.
Specifies the coordinates of the end point of the arc.
Description
Creates an Arc2d object by three points: the center point, the start point, and the end point.
Syntax
Visual Basic
Public Function AddByCenterStartEnd( _
   ByVal xCenter As Double, _
   ByVal yCenter As Double, _
   ByVal xStart As Double, _
   ByVal yStart As Double, _
   ByVal xEnd As Double, _
   ByVal yEnd As Double _
) As Arc2d
Parameters
xCenter
Specifies the coordinates of the center point of the arc.
yCenter
Specifies the coordinates of the center point of the arc.
xStart
Specifies the coordinates of the start point of the arc.
yStart
Specifies the coordinates of the start point of the arc.
xEnd
Specifies the coordinates of the end point of the arc.
yEnd
Specifies the coordinates of the end point of the arc.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objArcs As SolidEdgeFrameworkSupport.Arcs2d
    Dim objArc1 As SolidEdgeFrameworkSupport.Arc2d
    ' 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 an Arcs collection object
    Set objArcs = objDoc.ProfileSets.Add.Profiles.Add(pRefPlaneDisp:=objDoc.RefPlanes(1)).Arcs2d
    ' Create an arc
    Set objArc1 = objArcs.AddByCenterStartEnd(xCenter:=0, yCenter:=0, xStart:=0.05, _
                                              yStart:=0, xEnd:=0, yEnd:=0.05)

    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objArcs = Nothing
    Set objArc1 = Nothing
End Sub
See Also

Arcs2d Collection  | Arcs2d Members

Send comments on this topic.