OctreeData constructor

OctreeData({
  1. required Vector3 normal,
  2. Vector3? point,
  3. required num depth,
})

Implementation

OctreeData({
  required this.normal,
  this.point,
  required this.depth
});