BoundsSpec constructor

BoundsSpec({
  1. required Vector3 min,
  2. required Vector3 max,
})

Creates bounds spanning min to max.

Implementation

BoundsSpec({required this.min, required this.max});