mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 08:44:19 -04:00
*** empty log message ***
This commit is contained in:
parent
93213e2174
commit
aa9b5805b0
@ -16,11 +16,13 @@ public:
|
|||||||
virtual ~LerpFunctor(void);
|
virtual ~LerpFunctor(void);
|
||||||
LerpFunctor& operator=(const LerpFunctor&);
|
LerpFunctor& operator=(const LerpFunctor&);
|
||||||
virtual void operator()(float) = 0;
|
virtual void operator()(float) = 0;
|
||||||
public:
|
|
||||||
// now for typehandle stuff
|
PUBLISHED:
|
||||||
static TypeHandle get_class_type(void) {
|
static TypeHandle get_class_type(void) {
|
||||||
return _type_handle;
|
return _type_handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
static void init_type(void) {
|
static void init_type(void) {
|
||||||
TypedReferenceCount::init_type();
|
TypedReferenceCount::init_type();
|
||||||
register_type(_type_handle, "LerpFunctor",
|
register_type(_type_handle, "LerpFunctor",
|
||||||
@ -54,11 +56,13 @@ public:
|
|||||||
virtual ~SimpleLerpFunctor(void);
|
virtual ~SimpleLerpFunctor(void);
|
||||||
SimpleLerpFunctor<value>& operator=(const SimpleLerpFunctor<value>&);
|
SimpleLerpFunctor<value>& operator=(const SimpleLerpFunctor<value>&);
|
||||||
virtual void operator()(float) = 0;
|
virtual void operator()(float) = 0;
|
||||||
public:
|
|
||||||
// now for typehandle stuff
|
PUBLISHED:
|
||||||
static TypeHandle get_class_type(void) {
|
static TypeHandle get_class_type(void) {
|
||||||
return _type_handle;
|
return _type_handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
static void init_type(void) {
|
static void init_type(void) {
|
||||||
LerpFunctor::init_type();
|
LerpFunctor::init_type();
|
||||||
do_init_type(value);
|
do_init_type(value);
|
||||||
@ -121,11 +125,13 @@ public:
|
|||||||
virtual void operator()(float);
|
virtual void operator()(float);
|
||||||
void add_functor(LerpFunctor*);
|
void add_functor(LerpFunctor*);
|
||||||
void remove_functor(LerpFunctor*);
|
void remove_functor(LerpFunctor*);
|
||||||
public:
|
|
||||||
// now for typehandle stuff
|
PUBLISHED:
|
||||||
static TypeHandle get_class_type(void) {
|
static TypeHandle get_class_type(void) {
|
||||||
return _type_handle;
|
return _type_handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
static void init_type(void) {
|
static void init_type(void) {
|
||||||
LerpFunctor::init_type();
|
LerpFunctor::init_type();
|
||||||
register_type(_type_handle, "MultiLerpFunctor",
|
register_type(_type_handle, "MultiLerpFunctor",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user