Triangle.copy constructor
Create a triangle as a copy of other
.
Implementation
Triangle.copy(Triangle other)
: _point0 = new Vector3.copy(other._point0),
_point1 = new Vector3.copy(other._point1),
_point2 = new Vector3.copy(other._point2);