Hide Table of Contents

SolidWorks

Get BCurve Spline Points Example (VBA)

This example shows how to get B-spline parameter data (knots, control points, etc.) for a selected spline
or curve.

'---------------------------------------------------------------------------
' Preconditions:
' 1. Open a part document that contains a sketch with a spline curve
'     (e.g., <SolidWorks_install_dir>\samples\tutorial\molds\telephone.sldprt).
' 2. Select a curve in the graphics area.
' 3. Open an Immediate Window.
'
' Postconditions:
'   View the following information about the selected spline

'   in the Immediate Window:
'     * dimension
'          1-D:  X
'          2-D:  X, Y
'          3-D:  X, Y, Z
'          4-D:  X, Y, Z, W (where W is the weight of the control point)
'     * order (degree + 1)
'     * number of control points
'     * periodicity
'     * number of knots:
'       if periodicity = 1,
'          number of control points + 1
'       else
'          number of control points + order
'     * spline style: color, layer, layer override, line style, line weight
'----------------------------------------------------------------------------

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 swSketchSeg As SldWorks.Edge
    Set swSketchSeg = swSelectMgr.GetSelectedObject6(1, -1)

    Dim swCurveIn As SldWorks.Curve
    Dim swSplineParaData As SldWorks.SplineParamData
   
    Dim boolStatus As Boolean
    Dim i As Long
  

    Set swCurveIn = swSketchSeg.GetCurve
  

    Debug.Print ""
    Debug.Print "B-spline"
    Debug.Print ""
    Set swSplineParaData = swCurveIn.GetBCurveParams5(False, False, True, True)
    Debug.Print "The dimension is: " & swSplineParaData.Dimension
    Debug.Print "The order is: " & swSplineParaData.Order
    Debug.Print "The periodicity is: " & swSplineParaData.Periodic
    Debug.Print "The control point count is: " & swSplineParaData.ControlPointsCount

    Debug.Print "The knot point count is: " & swSplineParaData.KnotPointsCount
   

    Debug.Print "COLORREF of spline: " & swSplineParaData.Color
    Debug.Print "Layer of spline: " & swSplineParaData.Layer
    Debug.Print "Style overrides as defined in swLayerOverride_e: " & swSplineParaData.LayerOverride
    Debug.Print "Line style as defined in swLineStyles_e:: " & swSplineParaData.LineStyle
    Debug.Print "Line weight at defined in swLineWeights_e: " & swSplineParaData.LineWidth


  

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 BCurve Spline Points 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) 2012 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.