Skip to main content

WallThicknessMethod

Other

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

ValueDescription
WallThicknessMethod.RayCastingRayCasting option
WallThicknessMethod.ShrinkingSphereShrinkingSphere option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.WallThicknessMethod.RayCasting

See Also