Hide Table of Contents

Select Edges of All Holes on Face Example (VBA)

This example shows how to select the edges on all circular holes on a face.

 

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

'

' Problem:

'       A circular hole can be defined in a many ways; for example,

'       a circle inside an extruded sketch or a circle that is part

'       of a cut-extrude feature. Thus, there is no ready way to

'       detect a hole solely based on the feature information.

'       However, by directly examining the geometry and topology of

'       the model, it is possible to deduce holes.

'

'       This code uses many of the geometry and

'       topology related objects and methods to traverse a face

'       and look for circular holes.

'

' Preconditions:

'       (1) Part or assembly is open.

'       (2) Assembly is fully resolved.

'       (3) Face is selected.

'

' Postconditions:

'       (1) Face is deselected.

'       (2) Edges of all circular holes on face are selected.

'

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

 

Option Explicit

 

Function GetFaceNormalAtMidCoEdge _

( _

    swCoEdge As SldWorks.CoEdge _

) As Variant

    Dim swFace                          As SldWorks.face2

    Dim swSurface                       As SldWorks.surface

    Dim swLoop                          As SldWorks.Loop2

    Dim varParams                       As Variant

    Dim varPoint                        As Variant

    Dim dblMidParam                     As Double

    Dim dblNormal(2)                    As Double

    Dim bFaceSenseReversed              As Boolean

    

    varParams = swCoEdge.GetCurveParams

    If varParams(6) > varParams(7) Then

        dblMidParam = (varParams(6) - varParams(7)) / 2 + varParams(7)

    Else

        dblMidParam = (varParams(7) - varParams(6)) / 2 + varParams(6)

    End If

    varPoint = swCoEdge.Evaluate(dblMidParam)

    

    ' Get the face of the given coedge

    ' Check for the sense of the face

    Set swLoop = swCoEdge.GetLoop

    Set swFace = swLoop.GetFace

    Set swSurface = swFace.GetSurface

    

    bFaceSenseReversed = swFace.FaceInSurfaceSense

    

    varParams = swSurface.EvaluateAtPoint(varPoint(0), varPoint(1), varPoint(2))

    If bFaceSenseReversed Then

        ' Negate the surface normal as it is opposite from the face normal

        dblNormal(0) = -varParams(0)

        dblNormal(1) = -varParams(1)

        dblNormal(2) = -varParams(2)

    Else

        dblNormal(0) = varParams(0)

        dblNormal(1) = varParams(1)

        dblNormal(2) = varParams(2)

    End If

    

    GetFaceNormalAtMidCoEdge = dblNormal

End Function

 

Function GetTangentAtMidCoEdge _

( _

    swCoEdge As SldWorks.CoEdge _

) As Variant

    Dim varParams                       As Variant

    Dim dblMidParam                     As Double

    Dim dblTangent(2)                   As Double

    

    varParams = swCoEdge.GetCurveParams

    If varParams(6) > varParams(7) Then

        dblMidParam = (varParams(6) - varParams(7)) / 2# + varParams(7)

    Else

        dblMidParam = (varParams(7) - varParams(6)) / 2# + varParams(6)

    End If

    varParams = swCoEdge.Evaluate(dblMidParam)

    dblTangent(0) = varParams(3)

    dblTangent(1) = varParams(4)

    dblTangent(2) = varParams(5)

    GetTangentAtMidCoEdge = dblTangent

End Function

 

Function GetCrossProduct _

( _

    varVec1 As Variant, _

    varVec2 As Variant _

) As Variant

    Dim dblCross(2)                     As Double

    

    dblCross(0) = varVec1(1) * varVec2(2) - varVec1(2) * varVec2(1)

    dblCross(1) = varVec1(2) * varVec2(0) - varVec1(0) * varVec2(2)

    dblCross(2) = varVec1(0) * varVec2(1) - varVec1(1) * varVec2(0)

    GetCrossProduct = dblCross

End Function

 

Function VectorsAreEqual _

( _

    varVec1 As Variant, _

    varVec2 As Variant _

) As Boolean

    Dim dblMag                      As Double

    Dim dblDot                      As Double

    

    Dim dblUnit1(2)                 As Double

    Dim dblUnit2(2)                 As Double

    

    dblMag = (varVec1(0) * varVec1(0) + varVec1(1) * varVec1(1) + varVec1(2) * varVec1(2)) ^ 0.5

    dblUnit1(0) = varVec1(0) / dblMag: dblUnit1(1) = varVec1(1) / dblMag: dblUnit1(2) = varVec1(2) / dblMag

    

    dblMag = (varVec2(0) * varVec2(0) + varVec2(1) * varVec2(1) + varVec2(2) * varVec2(2)) ^ 0.5

    dblUnit2(0) = varVec2(0) / dblMag: dblUnit2(1) = varVec2(1) / dblMag: dblUnit2(2) = varVec2(2) / dblMag

    

    dblDot = dblUnit1(0) * dblUnit2(0) + dblUnit1(1) * dblUnit2(1) + dblUnit1(2) * dblUnit2(2)

    

    dblDot = Abs(dblDot - 1#)

    

    ' Compare within a tolerance

    If dblDot < 0.0000000001 Then '1.0e-10

        VectorsAreEqual = True

    Else

        VectorsAreEqual = False

    End If

End Function

 

Sub SelectHoleEdges(swFace As SldWorks.face2, swSelData As SldWorks.SelectData)

    Dim swThisLoop                      As SldWorks.Loop2

    Dim swThisCoEdge                    As SldWorks.CoEdge

    Dim swPartnerFace                   As SldWorks.face2

    Dim swPartnerLoop                   As SldWorks.Loop2

    Dim swPartnerCoEdge                 As SldWorks.CoEdge

    Dim swEntity                        As SldWorks.entity

    Dim varThisNormal                   As Variant

    Dim varPartnerNormal                As Variant

    Dim varCrossProduct                 As Variant

    Dim varTangent                      As Variant

    Dim vEdgeArr                        As Variant

    Dim swEdge                          As SldWorks.Edge

    Dim swCurve                         As SldWorks.Curve

    Dim bRet                            As Boolean

    

          

    Set swThisLoop = swFace.GetFirstLoop

    Do While Not swThisLoop Is Nothing

        ' Hole is inner loop

        ' Circular or elliptical hole has only one edge

        If swThisLoop.IsOuter = False And 1 = swThisLoop.GetEdgeCount Then

            Set swThisCoEdge = swThisLoop.GetFirstCoEdge

            Set swPartnerCoEdge = swThisCoEdge.GetPartner

            

            varThisNormal = GetFaceNormalAtMidCoEdge(swThisCoEdge)

            varPartnerNormal = GetFaceNormalAtMidCoEdge(swPartnerCoEdge)

            If Not VectorsAreEqual(varThisNormal, varPartnerNormal) Then

                ' There is a sufficient change between the two faces to determine

                ' what kind of transition is being made

                varCrossProduct = GetCrossProduct(varThisNormal, varPartnerNormal)

                varTangent = GetTangentAtMidCoEdge(swThisCoEdge)

                If VectorsAreEqual(varCrossProduct, varTangent) Then

                    ' hole

                    vEdgeArr = swThisLoop.GetEdges

                    Debug.Assert 0 = UBound(vEdgeArr)

                    

                    Set swEdge = vEdgeArr(0)

                    Set swCurve = swEdge.GetCurve

                    

                    ' Ignore elliptical holes

                    If swCurve.IsCircle Then

                        Set swEntity = swEdge

                        bRet = swEntity.Select4(True, swSelData)

                                               

                        Debug.Assert bRet

                    End If

                End If

            End If

        End If

        

        ' Move on to the next

        Set swThisLoop = swThisLoop.GetNext

    Loop

End Sub

Sub main()

    Dim swApp                   As SldWorks.SldWorks

    Dim swModel                 As SldWorks.ModelDoc2

    Dim swSelMgr                As SldWorks.SelectionMgr

    Dim swSelData               As SldWorks.SelectData

    Dim swFace                  As SldWorks.face2

    

    Set swApp = CreateObject("SldWorks.Application")

    Set swModel = swApp.ActiveDoc

    Set swSelMgr = swModel.SelectionManager

    Set swFace = swSelMgr.GetSelectedObject5(1)

    Set swSelData = swSelMgr.CreateSelectData

        

    swModel.ClearSelection2 True

    

    SelectHoleEdges swFace, swSelData

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:   Select Edges of All Holes on 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) 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.