Parameters of point cloud triangulation. More...
Public Member Functions | |
| TriangulationParameters () | |
Public Attributes | |
| number | numNeighbours |
| The number of nearest neighbor points to use for building of local triangulation. | |
| number | radius |
| number | critAngle |
| Critical angle of triangles in local triangulation (angle between triangles in fan should be less then this value) | |
| number | critHoleLength |
| Critical length of hole (all holes with length less then this value will be filled) | |
| boolean | automaticRadiusIncrease |
| automatic increase of the radius if points outside can make triangles from original radius not-Delone | |
Parameters of point cloud triangulation.
| TriangulationParameters::TriangulationParameters | ( | ) |
| boolean TriangulationParameters::automaticRadiusIncrease |
automatic increase of the radius if points outside can make triangles from original radius not-Delone
| number TriangulationParameters::critAngle |
Critical angle of triangles in local triangulation (angle between triangles in fan should be less then this value)
| number TriangulationParameters::critHoleLength |
Critical length of hole (all holes with length less then this value will be filled)
If value is subzero it is set automaticly to 0.7*bbox.diagonal()
| number TriangulationParameters::numNeighbours |
The number of nearest neighbor points to use for building of local triangulation.
| number TriangulationParameters::radius |
Radius of neighborhood around each point to consider for building local triangulation. This is an alternative to numNeighbours parameter. Please set to positive value only one of them.