Plane.copy constructor
- Plane other
Create a plane as a copy of other.
Implementation
Plane.copy(Plane other) : _normal = Vector3.copy(other._normal), constant = other.constant;
Create a plane as a copy of other.
Plane.copy(Plane other) : _normal = Vector3.copy(other._normal), constant = other.constant;