Inheritance diagram for osg::Shape:
Public Member Functions | |
Shape () | |
Shape (const Shape &sa, const CopyOp ©op=CopyOp::SHALLOW_COPY) | |
virtual Object * | cloneType () const =0 |
virtual Object * | clone (const CopyOp &) const =0 |
virtual bool | isSameKindAs (const Object *obj) const |
virtual const char * | libraryName () const |
virtual const char * | className () const |
virtual void | accept (ShapeVisitor &)=0 |
virtual void | accept (ConstShapeVisitor &) const =0 |
Protected Member Functions | |
virtual | ~Shape () |
osg::Shape::Shape | ( | ) | [inline] |
virtual osg::Shape::~Shape | ( | ) | [protected, virtual] |
virtual void osg::Shape::accept | ( | ConstShapeVisitor & | ) | const [pure virtual] |
accept a const shape visitor which can be used on const shape objects. Must be defined by derived classes.
virtual void osg::Shape::accept | ( | ShapeVisitor & | ) | [pure virtual] |
accept a non const shape visitor which can be used on non const shape objects. Must be defined by derived classes.
virtual const char* osg::Shape::className | ( | ) | const [inline, virtual] |
return the name of the attribute's class type.
Implements osg::Object.
Clone an attribute, with Object* return type. Must be defined by derived classes.
Implements osg::Object.
virtual Object* osg::Shape::cloneType | ( | ) | const [pure virtual] |
Clone the type of an attribute, with Object* return type. Must be defined by derived classes.
Implements osg::Object.
virtual bool osg::Shape::isSameKindAs | ( | const Object * | obj | ) | const [inline, virtual] |
return true if this and obj are of the same kind of object.
Reimplemented from osg::Object.
virtual const char* osg::Shape::libraryName | ( | ) | const [inline, virtual] |
return the name of the attribute's library.
Implements osg::Object.