WallThicknessMethod
Methods for wall thickness analysis computation. Determines how the wall thickness is calculated for each point on the surface. Available values: - RayCasting: Traces rays along the surface normal in both directions and selects the nearest valid opposite-wall intersection. - ShrinkingSphere: Iteratively shrinks a sphere whose center remains on the normal line to select an opposing surface contact; useful for curved or non-parallel surfaces. Both methods report the Euclidean distance between the two stored surface-contact endpoints.
Import
import ScriptingApi as api
# Access the class
# WallThicknessMethod is available via api.WallThicknessMethod
Enumeration Values
Enumeration Method from WallThicknessMethod
| Value | Description |
|---|---|
WallThicknessMethod.RayCasting | RayCasting option |
WallThicknessMethod.ShrinkingSphere | ShrinkingSphere option |
Usage Example
import ScriptingApi as api
# Access enumeration values
value = api.WallThicknessMethod.RayCasting