1
0
Fork 0

Added missing copy constructor that prevented tgvpf from working properly.

This commit is contained in:
david 2002-07-31 20:36:22 +00:00
parent 73c71d24ce
commit 3dff29e8cf

View file

@ -13,6 +13,9 @@ Line::Line ()
Line::Line (const Line &l)
{
int nPoints = l.getPointCount();
for (int i = 0; i < nPoints; i++)
addPoint(l.getPoint(i));
}
Line::~Line ()