The thickness shape is made up of a collection of faces to process and an offset parameter.
Properties
- Property FacesToThicken() As (Read Only)
-
Returns the collection of faces to be thickened.
- Example:
- The following example returns in list the list of faces of
the thickness firstThickness:
Set list = firstThickness.FacesToThicken
- Property Offset() As (Read Only)
-
Returns the thickness offset.
- Example:
- The following example returns in offset the offset of
the thickness firstThickness:
Set offset = firstThickness.Offset
Methods
- Sub AddFaceToThicken( iFaceToThicken)
-
Adds a new face to be thickened.
- Parameters:
-
- iFaceToThicken
- The new face to process
The following object is supported: .
- Example:
- The following example adds the new face face
to thicken for the thickness firstThickness:
call firstThickness.AddFaceToThicken(face)
- Parameters:
-
- iFaceToThicken
- The new face to process
The following object is supported: .
- Example:
- The following example adds the new face face
to thicken with a different offset value
for the thickness firstThickness:
call firstThickness.AddFaceWithDifferentThickness(face)
- Parameters:
-
- iFaceToRemove
- The face to remove
The following object is supported: .
- Example:
- The following example removes the existing face thickened
face from the thickness firstThickness:
call firstThickness.RemoveFaceWithDifferentThickness(face)(face)
- Parameters:
-
- iFaceToWithdraw
- The face to withdraw
The following object is supported: .
- Example:
- The following example withdraws the existing face thickened
face from the thickness firstThickness:
call firstThickness.WithdrawFaceToThicken(face)