Cell constructor

Cell([
  1. AABB? aabb
])

Constructs a new cell with the given values.

Implementation

Cell([AABB? aabb]) {
	this.aabb = aabb ?? AABB();
}