Hide Table of Contents

SOLIDWORKS

Get BCurve Spline Points Example (C#)

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

//---------------------------------------------------------------------------
// Preconditions:
// 1. Open public_documents\samples\tutorial\molds\telephone.sldprt.
// 2. Select a curve.
// 3. Open the Immediate Window.
//
// Postconditions: Examine the Immediate window.
//----------------------------------------------------------------------------
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System;
using System.Diagnostics;
namespace GetBSplineParamData_CSharp.csproj
{
    
partial class SolidWorksMacro
    {

        
public void Main()
        {

            
ModelDoc2 Part = null;
            Part = (
ModelDoc2)swApp.ActiveDoc;

            
SelectionMgr swSelectMgr = null;
            swSelectMgr = (
SelectionMgr)Part.SelectionManager;

            
IEdge swSketchSeg = null;
            swSketchSeg = (
ISketchSegment)swSelectMgr.GetSelectedObject6(1,-1);

            
Curve swCurveIn = null;
            
SplineParamData swSplineParaData = default(SplineParamData);
            
object varCtrlPoints = null;
            
object varKnotPoints = null;
            
bool boolStatus = false;
            
int i = 0;

            swCurveIn = (
Curve)swSketchSeg.GetCurve();

            
Debug.Print("");
            
Debug.Print("B-spline");
            
Debug.Print("");
            swSplineParaData = (
SplineParamData)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);
        }

        
public SldWorks swApp;

    }
}



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 (C#)
*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.