X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdimension.cpp;h=2a989dccec0de1b91fb3d68f8ab13e4d2ebbbcdf;hb=89b8b0c60579d8ef0cf9a13521e7bf7c7864883f;hp=6f561be7da4896efd7b5226277bde827bd3c91f8;hpb=86caae9cadd6e1877a4e6226533521ef0d1c6389;p=architektonas diff --git a/src/dimension.cpp b/src/dimension.cpp index 6f561be..2a989dc 100644 --- a/src/dimension.cpp +++ b/src/dimension.cpp @@ -324,6 +324,25 @@ about keeping track of old states... } +/*virtual*/ Object * Dimension::Copy(void) +{ +#warning "!!! This doesn't take care of attached Dimensions !!!" +/* +This is a real problem. While having a pointer in the Dimension to this line's points +is fast & easy, it creates a huge problem when trying to replicate an object like this. + +Maybe a way to fix that then, is to have reference numbers instead of pointers. That +way, if you copy them, ... you might still have problems. Because you can't be sure if +a copy will be persistant or not, you then *definitely* do not want them to have the +same reference number. +*/ + + Dimension * d = new Dimension(position, endpoint, dimensionType, parent); + d->size = size; + return d; +} + + // Dimensions are special: they contain exactly *two* points. Here, we check // only for zero/non-zero in returning the correct points. /*virtual*/ Vector Dimension::GetPointAtParameter(double parameter)