Example usage for com.google.gwt.corp.compatibility Numbers floatToIntBits

List of usage examples for com.google.gwt.corp.compatibility Numbers floatToIntBits

Introduction

In this page you can find the example usage for com.google.gwt.corp.compatibility Numbers floatToIntBits.

Prototype

public static final int floatToIntBits(float f) 

Source Link

Usage

From source file:com.badlogic.gdx.utils.NumberUtils.java

License:Apache License

public static int floatToIntBits(float value) {
    return Numbers.floatToIntBits(value);
}

From source file:com.badlogic.gdx.utils.NumberUtils.java

License:Apache License

public static int floatToRawIntBits(float value) {
    return Numbers.floatToIntBits(value);
}

From source file:com.badlogic.gdx.utils.NumberUtils.java

License:Apache License

public static int floatToIntColor(float value) {
    return Numbers.floatToIntBits(value);
}

From source file:com.googlecode.gwtquake.client.CompatibilityImpl.java

License:Open Source License

public int floatToIntBits(float f) {
    return Numbers.floatToIntBits(f);
}

From source file:java.io.DataOutputStream.java

License:Apache License

public void writeFloat(float v) throws IOException {
    writeInt(Numbers.floatToIntBits(v));
}

From source file:java.nio.DirectReadWriteByteBuffer.java

License:Apache License

public ByteBuffer putFloat(float value) {
    return putInt(Numbers.floatToIntBits(value));
}

From source file:java.nio.DirectReadWriteByteBuffer.java

License:Apache License

public ByteBuffer putFloat(int index, float value) {
    return putInt(index, Numbers.floatToIntBits(value));
}