PlaneGeometrySpec constructor

PlaneGeometrySpec({
  1. double width = 1.0,
  2. double depth = 1.0,
  3. int segmentsX = 1,
  4. int segmentsZ = 1,
})

Creates a plane spec.

Implementation

PlaneGeometrySpec({
  this.width = 1.0,
  this.depth = 1.0,
  this.segmentsX = 1,
  this.segmentsZ = 1,
});