Plane.copy constructor
Plane.copy(
- 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;