6 lines
No EOL
102 B
C++
6 lines
No EOL
102 B
C++
#include "Triangle.h"
|
|
|
|
ATriangle::ATriangle() {
|
|
mNumVertices = 3;
|
|
mVertices = new Coordinate[3];
|
|
} |