Hide Table of Contents

Create Variable Radius Asymmetric Elliptical Fillet Example (VBA)

This example shows how to create a variable radius asymmetric elliptical fillet and get its data.

'----------------------------------------------------------------------------
' Preconditions:
' 1. Open install_dir\samples\tutorial\api\block.sldprt.
' 2. Open an Immediate window.
'
' Postconditions:
' 1. Creates a variable radius asymmetric elliptical fillet, VarFillet1,
'    in the FeatureManager design tree.
' 2. Inspect the Immediate window.
'
' NOTE: Because the model is used elsewhere, do not save changes.
' ---------------------------------------------------------------------------
Option Explicit
Dim SwApp                   As SldWorks.SldWorks
Dim swModel                 As SldWorks.ModelDoc2
Dim swSelMgr                As SldWorks.SelectionMgr
Dim myFeature               As SldWorks.Feature
Dim swedge                  As SldWorks.Edge
Dim ver1                    As Vertex
Dim ver2                    As Vertex
Dim swFeatData              As SldWorks.VariableFilletFeatureData2
Dim Fillet_ProfileTyp       As Integer
Dim dists26(1)              As Double
Dim AsyRadius1              As Double
Dim AsyRadius2              As Double
Dim AsyRadius3              As Double
Dim AsyRadius4              As Double
Dim boolstatus              As Boolean
Dim radiis(1)               As Double
Dim radiiArray0             As Variant
Dim conicRhosArray0         As Variant
Dim setBackArray0           As Variant
Dim pointArray0             As Variant
Dim pointRhoArray0          As Variant
Dim dist2Array0             As Variant
Dim pointDist2Array0        As Variant

Sub main()

    Set SwApp = Application.SldWorks
   

    Set swModel = SwApp.ActiveDoc
    Set swSelMgr = swModel.SelectionManager
   

    radiis(0) = 0.008
    radiis(1) = 0.009
    radiiArray0 = radiis
    dists26(0) = 0.006
    dists26(1) = 0.007
    dist2Array0 = dists26
   

    conicRhosArray0 = 0
    setBackArray0 = 0
    pointArray0 = 0
    pointRhoArray0 = 0
    pointDist2Array0 = 0
   

    boolstatus = swModel.Extension.SelectByID2("", "EDGE", 1.66068305868521E-02, -4.40742070395572E-06, -1.49970056632469E-02, True, 1, Nothing, 0)
    If boolstatus = False Then ErrorMsg SwApp, "Failed to select edge"
   

    Set myFeature = swModel.FeatureManager.FeatureFillet3(swFeatureFilletAsymmetric + swFeatureFilletKeepFeatures + swFeatureFilletAttachEdges + swFeatureFilletUniformRadius + swFeatureFilletPropagate, 0, 0, 0, swFeatureFilletType_VariableRadius, swFilletOverFlowType_Default, swFeatureFilletCircular, (radiiArray0), (dist2Array0), (conicRhosArray0), (setBackArray0), (pointArray0), (pointDist2Array0), (pointRhoArray0))
    If myFeature Is Nothing Then ErrorMsg SwApp, "Failed to create fillet"
   

    Set swFeatData = myFeature.GetDefinition()
    If swFeatData Is Nothing Then ErrorMsg SwApp, "Failed to get definition for fillet feature"

    boolstatus = swFeatData.AccessSelections(swModel, Nothing)
    If boolstatus = False Then ErrorMsg SwApp, "Failed to access selections for fillet feature"
   

    boolstatus = swFeatData.AsymmetricFillet
    If boolstatus = False Then ErrorMsg SwApp, "Fillet is not asymmetric"
    Debug.Print "Variable size fillet is asymmetric? " & boolstatus
   

    Set swedge = swFeatData.GetFilletEdgeAtIndex(0)
    If swedge Is Nothing Then ErrorMsg SwApp, "Failed to get edge"
   

    Set ver1 = swedge.GetStartVertex
    If ver1 Is Nothing Then ErrorMsg SwApp, "Failed to get start vertex of edge"

    Set ver2 = swedge.GetEndVertex
    If ver2 Is Nothing Then ErrorMsg SwApp, "Failed to get end vertex of edge"

    AsyRadius1 = swFeatData.GetRadius2(ver1, True)
    If AsyRadius1 <> 0.008 Then ErrorMsg SwApp, "Radius R1 at vertex V1 is wrong"
    Debug.Print "Radius R1 at vertex V1: " & AsyRadius1
   

    AsyRadius2 = swFeatData.GetDistance(ver1)
    If AsyRadius2 <> 0.006 Then ErrorMsg SwApp, "Radius R2 at vertex V1 is wrong"
    Debug.Print "Radius R2 at vertex V1: " & AsyRadius2
   

    AsyRadius3 = swFeatData.GetRadius2(ver2, True)
    If AsyRadius3 <> 0.009 Then ErrorMsg SwApp, "Radius R1 for vertex V2 is wrong"
    Debug.Print "Radius R1 at vertex V2: " & AsyRadius3
   

    AsyRadius4 = swFeatData.GetDistance(ver2)
    If AsyRadius4 <> 0.007 Then ErrorMsg SwApp, "Radius R2 for vertex V2 is wrong"
    Debug.Print "Radius R2 at vertex V2: " & AsyRadius4
   

    Fillet_ProfileTyp = swFeatData.ConicTypeForCrossSectionProfile
    If Fillet_ProfileTyp <> 0 Then ErrorMsg SwApp, "Profile type is not elliptical"
    Debug.Print "Fillet profile type as defined in swFeatureFilletProfileType_e (0 = Elliptical): " & Fillet_ProfileTyp

    swFeatData.ReleaseSelectionAccess

End Sub

Function ErrorMsg(SwApp As SldWorks.SldWorks, Message As String)
    SwApp.SendMsgToUser2 Message, 0, 0
    SwApp.RecordLine "'*** WARNING - General"
    SwApp.RecordLine "'*** " & Message
    SwApp.RecordLine ""
End Function



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:   Create Variable Radius Asymmetric Elliptical Fillet 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.