LoopParameters constructor

LoopParameters({
  1. bool split = true,
  2. bool uvSmooth = false,
  3. bool preserveEdges = false,
  4. bool flatOnly = false,
  5. int? maxTriangles,
  6. double weight = 1,
})

Implementation

LoopParameters({
  this.split = true,
  this.uvSmooth = false,
  this.preserveEdges = false,
  this.flatOnly = false,
  int? maxTriangles,
  this.weight = 1
}){
  this.maxTriangles = maxTriangles ?? double.maxFinite.toInt();
}