AxisAlignedBoundingBox.this - multiple declarations

Function AxisAlignedBoundingBox.this

Creates an AABB from the same as the vector constructor, but as a varargs input

this();

Function AxisAlignedBoundingBox.this

Creates an AABB from the initial point, and how much in each direction the box extends

this (
  Vector!(T,dimensions) initialPoint,
  Vector!(T,dimensions) extent
);

Function AxisAlignedBoundingBox.this

Copy constructor for AABBs

this (
  AxisAlignedBoundingBox!(T,dimensions) toCopy
);