ExtrudeGeometryOptions constructor

ExtrudeGeometryOptions({
  1. int curveSegments = 12,
  2. int steps = 1,
  3. num depth = 100,
  4. bool bevelEnabled = true,
  5. num bevelThickness = 6,
  6. num? bevelSize,
  7. num bevelOffset = 0,
  8. Curve? extrudePath,
  9. int bevelSegments = 3,
})

Implementation

ExtrudeGeometryOptions({
  this.curveSegments = 12,
  this.steps = 1,
  this.depth = 100,
  this.bevelEnabled = true,
  this.bevelThickness = 6,
  num? bevelSize,
  this.bevelOffset = 0,
  this.extrudePath,
  this.bevelSegments = 3,
  //this.uvGenerator
}){
  this.bevelSize = bevelSize ?? bevelThickness-2;
}