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