mod method

MathTime mod(
  1. dynamic r
)

Implementation

MathTime mod( dynamic r ){
	if( r is MathTime ){
		return floatToTime( ClipMath.fmod( toFloat(), r.toFloat() ) );
	}
	return floatToTime( ClipMath.fmod( toFloat(), ClipMath.toDouble(r) ) );
}