TessellateModifier constructor

TessellateModifier({
  1. dynamic maxEdgeLength = 0.1,
  2. dynamic maxIterations = 6,
  3. dynamic maxFaces = double.infinity,
})

Implementation

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