A5/Triangle.cpp
2024-11-18 00:16:52 -07:00

6 lines
No EOL
100 B
C++

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