Hide Table of Contents

Get Edge Curve Parameterization Example (VBA)

This example shows how to get curve parameterization data for a selected edge.

'-----------------------------------------------
' Preconditions:
' 1. Open a part or assembly.
' 2. If you opened an assembly, ensure that it is 
'    fully resolved.
' 3. Select an edge.
' 4. Open the Immediate window.
'
' Postconditions: Inspect the Immediate window.
'-----------------------------------------------


Option Explicit

Sub main()


    Dim swApp As SldWorks.SldWorks
    Dim Part As SldWorks.ModelDoc2
   

    Set swApp = CreateObject("SldWorks.Application")
    Set Part = swApp.ActiveDoc

    Dim swSelectMgr As SldWorks.SelectionMgr
    Set swSelectMgr = Part.SelectionManager

    Dim swEdge As SldWorks.Edge
    Set swEdge = swSelectMgr.GetSelectedObject5(1)
   

    Dim swCurve As SldWorks.Curve
    Dim swCurveParaData As SldWorks.CurveParamData
    Set swCurve = swEdge.GetCurve
    Set swCurveParaData = swEdge.GetCurveParams3
  

    Debug.Print "The curve tag is: " & swCurveParaData.CurveTag
    Debug.Print "The curve type as defined in swCurveType_e is: " & swCurveParaData.CurveType
   

    Dim vEndPoint As Variant
    vEndPoint = swCurveParaData.EndPoint
    Dim EndPoint(2) As Double
   

    Dim i As Long
   

    For i = 0 To UBound(vEndPoint)
        EndPoint(i) = vEndPoint(i)
    Next i
 

    Debug.Print "The end point x,y,z coordinates are: " & EndPoint(0) & "," & EndPoint(1) & "," & EndPoint(2)
   

    Dim vStartPoint As Variant
    Dim StartPoint(2) As Double
    vStartPoint = swCurveParaData.StartPoint
    For i = 0 To UBound(vStartPoint)
        StartPoint(i) = vStartPoint(i)
    Next i
   

    Debug.Print "The start point x,y,z coordinates are: " & StartPoint(0) & "," & StartPoint(1) & "," & StartPoint(2)
   

    Debug.Print "The curve and edge are in the same direction: " & swCurveParaData.Sense
    Debug.Print "The maximum U parameter value is: " & swCurveParaData.UMaxValue
    Debug.Print "The minimum U parameter value is: " & swCurveParaData.UMinValue
   
End Sub



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Get Edge Curve Parameterization Example (VBA)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2019 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.