A5/Triangle.cpp

6 lines
No EOL
102 B
C++

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