Mechanical Design |
3D Functional Tolerancing & Annotation |
Retrieving the Geometry Pointed to by an Annotation |
Use Case |
AbstractThis article discusses the CAAScdTpiObtainGeometry use case. This use case explains how to obtain the toleranced surface in a CATIA V5 document.
|
How To Get Toleranced Geometry
On an annotation, you must call the Count function, to know on how many surfaces
the annotation is applied to.
Then, you get a complete path on the geometry.
### How to get
Annotations? ### Set annotation = annotations.Item(IdxAnnot) SurfCount = annotation.GetSurfacesCount() Dim enumValues () as Variant ReDim enumValues (SurfCount - 1) annotation.GetSurfaces(enumValues) Dim Name As String For i = LBound(enumValues) to UBound(enumValues) Name = enumValues(i) msgBox Name Next |
[Top]
History | |
Version: 1 [Feb 2003] | Document created |
[Top] |
Copyright © 2003, Dassault Systèmes. All rights reserved.