Plane.copy constructor
Implementation
Plane.copy(Plane other)
: _normal = new Vector3.copy(other._normal),
_constant = other._constant;
Plane.copy(Plane other)
: _normal = new Vector3.copy(other._normal),
_constant = other._constant;