Hide menu
Loading...
Searching...
No Matches
cadex.WallThickness_Analyzer Class Reference

The wall thickness analyzing tool. More...

Inherits global.SystemIDisposable.

Public Member Functions

 WallThickness_Analyzer (global::System.IntPtr cPtr, bool cMemoryOwn)
 
void Dispose ()
 
 WallThickness_Analyzer ()
 Constructor.
 
cadex.WallThickness_Data Perform (cadex.ModelData.Solid theSolid, uint theResolution, cadex.ProgressStatus theProgressStatus)
 Runs analyzing process for ModelData.Solid object.
 
cadex.WallThickness_Data Perform (cadex.ModelData.Solid theSolid, uint theResolution)
 
cadex.WallThickness_Data Perform (cadex.ModelData.Solid theSolid, cadex.ProgressStatus theProgressStatus)
 Runs analyzing process for ModelData.Solid object.
 
cadex.WallThickness_Data Perform (cadex.ModelData.Solid theSolid)
 
cadex.WallThickness_Data Perform (cadex.ModelData.IndexedTriangleSet theITS, uint theResolution, cadex.ProgressStatus theProgressStatus)
 Runs analyzing process for ModelData.IndexedTriangleSet object.
 
cadex.WallThickness_Data Perform (cadex.ModelData.IndexedTriangleSet theITS, uint theResolution)
 
cadex.WallThickness_Data Perform (cadex.ModelData.IndexedTriangleSet theITS, cadex.ProgressStatus theProgressStatus)
 Runs analyzing process for ModelData.IndexedTriangleSet object.
 
cadex.WallThickness_Data Perform (cadex.ModelData.IndexedTriangleSet theITS)
 

Protected Member Functions

virtual void Dispose (bool disposing)
 

Detailed Description

The wall thickness analyzing tool.

Analyze models to get information about minimum and maximum wall thicknesses. If the analysis is failed, the empty WallThickness_Data is returned. The model should be represented as a solid.

Example of analysis results could be found on the mtk_wall_thickness_overview_page page.

Examples
wall_thickness/analyzer/Program.cs, and wall_thickness/analyzer/main.cxx.

Member Function Documentation

◆ Perform() [1/2]

cadex.WallThickness_Data cadex.WallThickness_Analyzer.Perform ( cadex.ModelData.IndexedTriangleSet theITS,
uint theResolution,
cadex.ProgressStatus theProgressStatus )
inline

Runs analyzing process for ModelData.IndexedTriangleSet object.

theResolution is a value to determine accuracy of wall thickness calculation. theResolution should be at least 20, otherwise nothing will happen. The larger the value, the higher the accuracy of the calculations. The recommended values are 100 - 5000. Be aware, high values greatly increase computation time and memory usage.

◆ Perform() [2/2]

cadex.WallThickness_Data cadex.WallThickness_Analyzer.Perform ( cadex.ModelData.Solid theSolid,
uint theResolution,
cadex.ProgressStatus theProgressStatus )
inline

Runs analyzing process for ModelData.Solid object.

theResolution is a value to determine accuracy of wall thickness calculation. theResolution should be at least 20, otherwise nothing will happen. The larger the value, the higher the accuracy of the calculations. The recommended values are 100 - 5000. Be aware, high values greatly increase computation time and memory usage.