MaterialMapD constructor

MaterialMapD({
  1. Pointer<MaterialMapC>? originalPointer,
  2. TextureD? texture,
  3. ColorD? color,
  4. double value = 0,
})

Implementation

MaterialMapD({
  super.originalPointer,
  TextureD? texture,
  ColorD? color,
  this.value = 0,
}) :
  texture = texture ?? .zero(),
  color = color ?? .zero();