TessellateModifier constructor
TessellateModifier({
- dynamic maxEdgeLength = 0.1,
- dynamic maxIterations = 6,
- dynamic maxFaces = double.infinity,
Implementation
TessellateModifier(
{maxEdgeLength = 0.1, maxIterations = 6, maxFaces = double.infinity}) {
this.maxEdgeLength = maxEdgeLength;
this.maxIterations = maxIterations;
this.maxFaces = maxFaces;
}