A shell shape is made up of a list of faces to process and two thickness parameters.
Properties
- Property ExternalThickness() As (Read Only)
-
Returns the shell external thickness.
- Example:
- The following example returns in extThick
the external thickness of the shell firstShell:
Set extThick = firstShell.ExternalThickness
- Property FacesToRemove() As (Read Only)
-
Returns the collection of faces to be removed by the shell process.
- Example:
- The following example returns in list the faces
to be removed from the shell firstShell:
Set list = firstShell.FacesToRemove
- Property InternalThickness() As (Read Only)
-
Returns the shell internal thickness.
- Example:
- The following example returns in intThick
the internal thickness of the shell firstShell:
Set intThick = firstShell.InternalThickness
Methods
- Sub AddFaceToRemove( iFaceToRemove)
-
Adds a new face to those to be removed by the shell process.
- Parameters:
-
- iFaceToRemove
- The face to be removed
The following object is supported: .
- Example:
- The following example adds the new face face
to be removed in the shell firstShell:
call firstShell.AddFaceToRemove(face)
- Parameters:
-
- iFaceToThicken
- The face to be thicken with different offset values
The following object is supported: .
- Example:
- The following example adds the new face face
to be thicken with different offset values
in the shell firstShell:
call firstShell.AddFaceWithDifferentThickness(face)
- Parameters:
-
- iFaceToRemove
- The face to be removed from the shell specifications
The following object is supported: .
- Example:
- The following example removes the face face from the list
of faces in the shell firstShell:
call firstShell.RemoveFaceWithDifferentThickness(face)
- Parameters:
-
- iFaceToWithdraw
- The face to be withdrawn from the shell
The following object is supported: .
- Example:
- The following example removes the face face from the list of
faces in the shell firstShell:
call firstShell.WithdrawFaceToRemove(face)