getValue static method

void getValue(
  1. MathValue v,
  2. ParamInteger type,
  3. MathComplex c,
  4. MathFract f,
  5. MathTime t,
)

Implementation

static void getValue( MathValue v, ParamInteger type, MathComplex c, MathFract f, MathTime t ){
	type.set( v._type );
	MathComplex.setComplex( c, v._c.real(), v._c.imag() );
	MathFract.setFract( f, v._f.getMinus(), v._f.num(), v._f.denom() );
	MathTime.setTime( t, v._t.fps(), v._t.getMinus(), v._t.hour(), v._t.min(), v._t.sec(), v._t.frame() );
}