Quote:
Originally Posted by omalleyj
However I cannot use IEEERemainder() in an FRC project they have compiled the jar without it apparently.
|
That's not entirely true. FRC uses the Squawk JVM, which is based on Java ME. Java ME does not require IEEERemainder(), which is why it isn't in java.lang.Math. However, Squawk does implement some features from Java SE, and puts them in other packages. In this case, IEEERemainder is in the com.sun.squawk.util.MathUtils package.