Hide Table of Contents

Locate Apex of Conical Face Example (VBA)

This example shows how to locate the apex of a conical face.

'----------------------------------------------
' Preconditions:
' 1. Open a part or assembly containing a conical face.
' 2. Select the conical face.
' 3. Open the Immediate window.
'
' Postconditions:
' 1. Creates a 3D sketch with a single point at the apex of
'    the conical face.
' 2. Examine the Immediate window.
'
' NOTE: Conical face can be truncated.
'------------------------------------------------

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 swFace                  As SldWorks.face2

    Dim swSurf                  As SldWorks.surface

    Dim vCone                   As Variant

    Dim nAxis(2)                As Double

    Dim vAxis                   As Variant

    Dim swAxis                  As SldWorks.MathVector

    Dim nOrigin(2)              As Double

    Dim vOrigin                 As Variant

    Dim swOrigin                As SldWorks.MathPoint

    Dim swApex                  As SldWorks.MathPoint

    Dim swApexPt                As SldWorks.SketchPoint

    

    Set swApp = Application.SldWorks

    Set swMathUtil = swApp.GetMathUtility

    Set swModel = swApp.ActiveDoc

    Set swSelMgr = swModel.SelectionManager

    Set swFace = swSelMgr.GetSelectedObject5(1)

    Set swSurf = swFace.GetSurface: Debug.Assert swSurf.IsCone

    

    vCone = swSurf.ConeParams

    

    nOrigin(0) = vCone(0):  nOrigin(1) = vCone(1):  nOrigin(2) = vCone(2)

    vOrigin = nOrigin

    Set swOrigin = swMathUtil.CreatePoint((vOrigin))

    

    nAxis(0) = vCone(3):    nAxis(1) = vCone(4):    nAxis(2) = vCone(5)

    vAxis = nAxis

    Set swAxis = swMathUtil.CreateVector((vAxis))

    

    Set swAxis = swAxis.Scale(vCone(6) / Tan(vCone(7)))

    

    Set swApex = swOrigin.AddVector(swAxis)

    

    Debug.Print "File = " & swModel.GetPathName

    Debug.Print "  origin         = (" & vCone(0) * 1000# & ", " & vCone(1) * 1000# & ", " & vCone(2) * 1000# & ") mm"

    Debug.Print "  axis           = (" & vCone(3) & ", " & vCone(4) & ", " & vCone(5) & ")"

    Debug.Print "  radius         = " & vCone(6) * 1000# & " mm"

    ' 1 radian = 180º/p = 57.295779513º or approximately 57.3º

    Debug.Print "  half angle     = " & vCone(7) * 57.3 & " deg"

    Debug.Print "  Apex           = " & swApex.ArrayData(0) * 1000# & ", " & swApex.ArrayData(1) * 1000# & ", " & swApex.ArrayData(2) * 1000# & ") mm"

    

    swModel.Insert3DSketch2 False

    swModel.SetAddToDB True

    

    Set swApexPt = swModel.CreatePoint2(swApex.ArrayData(0), swApex.ArrayData(1), swApex.ArrayData(2))

    

    swModel.SetAddToDB False

    swModel.Insert3DSketch2 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:   Locate Apex of Conical Face 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) 2018 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.