55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
// Filename: eggJointNodePointer.h
|
|
// Created by: drose (26Feb01)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef EGGJOINTNODEPOINTER_H
|
|
#define EGGJOINTNODEPOINTER_H
|
|
|
|
#include <pandatoolbase.h>
|
|
|
|
#include "eggJointPointer.h"
|
|
|
|
#include <eggGroup.h>
|
|
#include <pointerTo.h>
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : EggJointNodePointer
|
|
// Description : This stores a pointer back to a <Joint> node.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EggJointNodePointer : public EggJointPointer {
|
|
public:
|
|
EggJointNodePointer(EggObject *object);
|
|
|
|
virtual int get_num_frames() const;
|
|
virtual LMatrix4d get_frame(int n) const;
|
|
virtual void set_frame(int n, const LMatrix4d &mat);
|
|
|
|
virtual bool add_rebuild_frame(const LMatrix4d &mat);
|
|
virtual bool do_rebuild();
|
|
|
|
private:
|
|
PT(EggGroup) _joint;
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
EggJointPointer::init_type();
|
|
register_type(_type_handle, "EggJointNodePointer",
|
|
EggJointPointer::get_class_type());
|
|
}
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#endif
|
|
|
|
|