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