Home | History | Annotate | Download | only in math

Lines Matching refs:floats

859      * Check a vector... if it is null or its floats are NaN or infinite,

917 * @param floats
922 public float[] toArray(float[] floats) {
923 if (floats == null) {
924 floats = new float[3];
926 floats[0] = x;
927 floats[1] = y;
928 floats[2] = z;
929 return floats;