Updated wrappers
This commit is contained in:
@@ -25,54 +25,67 @@ BEGIN_VALUE_REFLECTOR(osg::Timer)
|
||||
"",
|
||||
"");
|
||||
I_Method0(osg::Timer_t, tick,
|
||||
Properties::NON_VIRTUAL,
|
||||
__Timer_t__tick,
|
||||
"Get the timers tick value. ",
|
||||
"");
|
||||
I_Method0(void, setStartTick,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__setStartTick,
|
||||
"Set the start. ",
|
||||
"");
|
||||
I_Method1(void, setStartTick, IN, osg::Timer_t, t,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__setStartTick__Timer_t,
|
||||
"",
|
||||
"");
|
||||
I_Method0(osg::Timer_t, getStartTick,
|
||||
Properties::NON_VIRTUAL,
|
||||
__Timer_t__getStartTick,
|
||||
"",
|
||||
"");
|
||||
I_Method0(double, time_s,
|
||||
Properties::NON_VIRTUAL,
|
||||
__double__time_s,
|
||||
"Get elapsed time in seconds. ",
|
||||
"");
|
||||
I_Method0(double, time_m,
|
||||
Properties::NON_VIRTUAL,
|
||||
__double__time_m,
|
||||
"Get elapsed time in milliseconds. ",
|
||||
"");
|
||||
I_Method0(double, time_u,
|
||||
Properties::NON_VIRTUAL,
|
||||
__double__time_u,
|
||||
"Get elapsed time in micoseconds. ",
|
||||
"");
|
||||
I_Method0(double, time_n,
|
||||
Properties::NON_VIRTUAL,
|
||||
__double__time_n,
|
||||
"Get elapsed time in nanoseconds. ",
|
||||
"");
|
||||
I_Method2(double, delta_s, IN, osg::Timer_t, t1, IN, osg::Timer_t, t2,
|
||||
Properties::NON_VIRTUAL,
|
||||
__double__delta_s__Timer_t__Timer_t,
|
||||
"Get the time in seconds between timer ticks t1 and t2. ",
|
||||
"");
|
||||
I_Method2(double, delta_m, IN, osg::Timer_t, t1, IN, osg::Timer_t, t2,
|
||||
Properties::NON_VIRTUAL,
|
||||
__double__delta_m__Timer_t__Timer_t,
|
||||
"Get the time in milliseconds between timer ticks t1 and t2. ",
|
||||
"");
|
||||
I_Method2(double, delta_u, IN, osg::Timer_t, t1, IN, osg::Timer_t, t2,
|
||||
Properties::NON_VIRTUAL,
|
||||
__double__delta_u__Timer_t__Timer_t,
|
||||
"Get the time in microseconds between timer ticks t1 and t2. ",
|
||||
"");
|
||||
I_Method2(double, delta_n, IN, osg::Timer_t, t1, IN, osg::Timer_t, t2,
|
||||
Properties::NON_VIRTUAL,
|
||||
__double__delta_n__Timer_t__Timer_t,
|
||||
"Get the time in nanoseconds between timer ticks t1 and t2. ",
|
||||
"");
|
||||
I_Method0(double, getSecondsPerTick,
|
||||
Properties::NON_VIRTUAL,
|
||||
__double__getSecondsPerTick,
|
||||
"Get the the numer of ticks per second. ",
|
||||
"");
|
||||
|
||||
Reference in New Issue
Block a user