Hide Table of Contents

Transform Point from Component Space to Assembly Space Example (VBA)

This example shows how to transform a point from component space to assembly space.

 

'----------------------------------------

'

' Preconditions:

'       (1) Assembly document is open.

'       (2) Component is selected.

'

' Postconditions: Component's origin is transformed to a point assembly space.

'

'-----------------------------------------

Option Explicit

Sub main()

    Dim swApp                   As SldWorks.SldWorks

    Dim swMathUtil              As SldWorks.MathUtility

    Dim swModel                 As SldWorks.ModelDoc2

    Dim swSelMgr                As SldWorks.SelectionMgr

    Dim swComp                  As SldWorks.Component2

    Dim swXform                 As SldWorks.MathTransform

    Dim nPt(2)                  As Double

    Dim vPt                     As Variant

    Dim swPt                    As SldWorks.MathPoint

    Dim i                       As Long

    Dim bRet                    As Boolean

    

    Set swApp = Application.SldWorks

    Set swMathUtil = swApp.GetMathUtility

    Set swModel = swApp.ActiveDoc

    Set swSelMgr = swModel.SelectionManager

    Set swComp = swSelMgr.GetSelectedObjectsComponent(1)

    Set swXform = swComp.Transform2

    

    ' Point at component origin

    nPt(0) = 0#

    nPt(1) = 0#

    nPt(2) = 0#

    vPt = nPt

    

    Set swPt = swMathUtil.CreatePoint(vPt)

    Set swPt = swPt.MultiplyTransform(swXform)

    

    Debug.Print "File = " & swModel.GetPathName

    Debug.Print "  Comp = " & swComp.Name2 & " [" & swComp.GetPathName & "]"

    Debug.Print "    Pt in comp = (" & nPt(0) * 1000# & ", " & nPt(1) * 1000# & ", " & nPt(2) * 1000# & ") mm"

    Debug.Print "    Pt in assy = (" & swPt.ArrayData(0) * 1000# & ", " & swPt.ArrayData(1) * 1000# & ", " & swPt.ArrayData(2) * 1000# & ") mm"

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:   Transform Point from Component Space to Assembly Space 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.