Triangle.copy constructor

Triangle.copy(
  1. Triangle other
)

Create a triangle as a copy of other.

Implementation

Triangle.copy(Triangle other)
  : _point0 = Vector3.copy(other._point0),
    _point1 = Vector3.copy(other._point1),
    _point2 = Vector3.copy(other._point2);