Plane.copy constructor

Plane.copy(Plane other)

Implementation

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