A5/Triangle.cpp
2024-11-07 00:57:17 -07:00

6 lines
No EOL
106 B
C++

#include "Triangle.h"
ATriangle::ATriangle() {
mNumVertices = 3;
mVertices = new Coordinate[3];
}