LodLevel constructor

const LodLevel({
  1. required Geometry geometry,
  2. required Material material,
  3. required double screenSize,
})

A level drawing geometry with material down to a screenSize fraction of the viewport height.

Implementation

const LodLevel({
  required this.geometry,
  required this.material,
  required this.screenSize,
});