X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fobject.cpp;h=ab95c0ea16fb5a35cf56af5074671b17cf8377b2;hb=5446001bd9adfd9f4787f5de5a2a7afd8d7cdb5a;hp=b5bab70d954f7c2f80e93cc29de2d3f790484c72;hpb=7b7c8ec7d7f5379e09a8b7392f465f41639b0c79;p=architektonas diff --git a/src/object.cpp b/src/object.cpp index b5bab70..ab95c0e 100644 --- a/src/object.cpp +++ b/src/object.cpp @@ -82,6 +82,12 @@ Object::~Object() { } +// This returns a pointer to the point passed in, if it coincides. Otherwise returns NULL. +/*virtual*/ Vector * Object::GetPointAt(Vector) +{ + return 0; +} + ObjectState Object::GetState(void) { return state; @@ -92,6 +98,11 @@ void Object::Reparent(Object * newParent) parent = newParent; } +Dimension * Object::GetAttachedDimension(void) +{ + return attachedDimension; +} + // Class methods... void Object::SetFixedAngle(bool state/*= true*/)