Plane.copy constructor

Plane.copy(
  1. Plane other
)

Implementation

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