InfinityModelConfig constructor

const InfinityModelConfig({
  1. Color defaultColorMesh = const Color.fromARGB(255, 255, 255, 255),
  2. Color defaultColorPoints = const Color.fromARGB(255, 200, 200, 200),
  3. double defaultPointWidth = 1,
  4. double defaultLineWidth = 1,
  5. bool perspective = true,
  6. bool supportZIndex = true,
})

Creates a new InfinityModelConfig.

Implementation

const InfinityModelConfig({
  this.defaultColorMesh = const Color.fromARGB(255, 255, 255, 255),
  this.defaultColorPoints = const Color.fromARGB(255, 200, 200, 200),
  this.defaultPointWidth = 1,
  this.defaultLineWidth = 1,
  this.perspective = true,
  this.supportZIndex = true,
});