setTime method

MathValue setTime(
  1. MathTime x
)

Implementation

MathValue setTime( MathTime x ){
	switch( _type ){
	case ClipMath.valueTypeComplex: _c.ass( x.toFloat() ); break;
	case ClipMath.valueTypeFract  : _f.ass( x.toFloat() ); break;
	case ClipMath.valueTypeTime   : _t.ass( x           ); break;
	}
	return this;
}