Hide Table of Contents

Rotate and Copy 3D Sketch About Coordinates Example (VBA)

This example shows how to rotate and copy 3D sketches.

'-----------------------------------------------------------
' Preconditions:
' 1. Open or create a part document with two 3D sketches
'    named 3DSketch1 and 3DSketch2.
' 2. Open the Immediate window.
'
' Postconditions:
' 1. Copies and rotates 3DSketch2 around
'    the center point of 3DSketch1's arc.
' 2. Rotates 3DSketch1 around the center point of
'    its arc.
' 3. Examine the FeatureManager design tree and the
'    Immediate window.
'-----------------------------------------------------------
Option Explicit
Sub main()
    Dim SwApp As SldWorks.SldWorks
    Dim swModel As SldWorks.ModelDoc2
    Dim swSelMgr As SldWorks.SelectionMgr
    Dim swModelDocExt As SldWorks.ModelDocExtension
    Dim swSelData As SldWorks.SelectData
    Dim swSketchMgr As SldWorks.SketchManager
    Dim swSketch As SldWorks.Sketch
    Dim boolStatus As Boolean
    Dim varSketchSegments As Variant
    Dim i As Integer
    Set SwApp = Application.SldWorks
    ' If SOLIDWORKS not running, then exit macro
    If SwApp Is Nothing Then Exit Sub
    ' Document with two 3D sketches, named 3DSketch2 and
    ' 3DSketch1, is open and active
    Set swModel = SwApp.ActiveDoc
    If swModel Is Nothing Then
        MsgBox "Failed to open document."
        Exit Sub
    End If
    Set swModelDocExt = swModel.Extension
    Set swSelMgr = swModel.SelectionManager
    Set swSelData = swSelMgr.CreateSelectData
    Set swSketchMgr = swModel.SketchManager 
    ' Select 3DSketch2 
    boolStatus = swModelDocExt.SelectByID2("3DSketch2", "SKETCH", 0, 0, 0, False, 0, Nothing, 0)
    If boolStatus = False Then
        MsgBox "Failed to select 3DSketch2."
        Exit Sub
    End If 
    ' Open 3DSketch2 in edit mode
    swModel.EditSketch
    Set swSketch = swSketchMgr.ActiveSketch
    If swSketch Is Nothing Then
        MsgBox "Failed to get pointer to 3DSketch2."
        Exit Sub
    End If
    ' Select all sketch segments in 3DSketch2 
    varSketchSegments = swSketch.GetSketchSegments()
    For i = 0 To UBound(varSketchSegments)
        boolStatus = varSketchSegments(i).Select4(True, swSelData)
        If boolStatus = False Then MsgBox "Failed to select sketch segment instance." & i & "."
    Next i 
    ' Copy and rotate 3DSketch2 about center
    ' point of 3DSketch1's arc
    Debug.Print "Rotating and copying 3DSketch2 about the center point of 3DSketch1's arc? " & swSketchMgr.RotateOrCopy3DAboutXYZ(True, 1, True, -0.09925811702374, 0.004131001848179, 0, 1.5707963267949, 0, 0)
    swModel.ClearSelection2 True    
    ' Exit 3DSketch2 
    swSketchMgr.InsertSketch True
    ' Select 3DSketch1 
    boolStatus = swModelDocExt.SelectByID2("3DSketch1", "SKETCH", 0, 0, 0, False, 0, Nothing, 0)
    If boolStatus = False Then
        MsgBox "Failed to select 3DSketch1."
        Exit Sub
    End If
    ' Edit 3DSketch1 
    swModel.EditSketch
    Set swSketch = swModel.GetActiveSketch2
    If swSketch Is Nothing Then
        MsgBox "Failed to get pointer to 3DSketch1."
        Exit Sub
    End If 
    ' Select all sketch segments in 3DSketch1 
    varSketchSegments = swSketch.GetSketchSegments()
    For i = 0 To UBound(varSketchSegments)
        boolStatus = varSketchSegments(i).Select4(True, swSelData)
        If boolStatus = False Then
            MsgBox "Failed to select sketch segment instance." & i & "."
            Exit Sub
        End If
    Next i
 
    ' Rotate 3DSketch1 about the
    ' center point of its arc
    Debug.Print "Rotating 3DSketch1 about the center point of its arc? " & swSketchMgr.RotateOrCopy3DAboutXYZ(False, 1, True, -0.09925811702374, 0.004131001848179, 0, 1.5707963267949, 0, 0)
    swModel.ClearSelection2 True
    ' Exit 3DSketch1 
    swSketchMgr.InsertSketch True
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:   Rotate and Copy 3D Sketch About Coordinates 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) 2015 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.