Added line object implementation.

This commit is contained in:
Jim Evins
2016-05-28 18:50:02 -04:00
parent cd24c96386
commit f447aed034
11 changed files with 501 additions and 45 deletions
+9 -1
View File
@@ -86,7 +86,15 @@ LabelModelObject::LabelModelObject( const LabelModelObject* object )
{
mHandles.append( handle->clone( this ) );
}
mOutline = object->mOutline->clone( this );
if ( object->mOutline )
{
mOutline = object->mOutline->clone( this );
}
else
{
mOutline = 0;
}
mMatrix = object->mMatrix;
}