------------------------------------------------------------------------------ Description: Return the maximum level of subdivision. It is used to prevent from infinite loop in degenerated cases. For order 3 or higher, if the inflection point is exactly on the mid-point, error metric will not detect that a subdivision is required. 0 means no subdivision, neither fixed nor adaptive. \post positive_
| 2664 | // neither fixed nor adaptive. |
| 2665 | // \post positive_result: result>=GetFixedSubdivisions() |
| 2666 | int vtkSimpleCellTessellator::GetMaxSubdivisionLevel() |
| 2667 | { |
| 2668 | assert("post: positive_result" && this->MaxSubdivisionLevel >= this->FixedSubdivisions); |
| 2669 | return this->MaxSubdivisionLevel; |
| 2670 | } |
| 2671 | |
| 2672 | //------------------------------------------------------------------------------ |
| 2673 | // Description: |
no test coverage detected