Implemented Biometric Card Hash display.

This commit is contained in:
Sebastian Hartte
2016-10-10 08:53:34 +02:00
parent 2b1c11b0bb
commit e82641760b
8 changed files with 328 additions and 8 deletions
@@ -23,7 +23,6 @@ import java.util.ArrayList;
import java.util.EnumMap;
import java.util.EnumSet;
import java.util.List;
import javax.vecmath.Vector4f;
import com.google.common.base.Preconditions;
@@ -434,6 +433,11 @@ public class CubeBuilder
setColor( color | 0xFF000000 );
}
public void setColorRGB( float r, float g, float b )
{
setColorRGB( (int) ( r * 255 ) << 16 | (int) ( g * 255 ) << 8 | (int) ( b * 255 ) );
}
public void setRenderFullBright( boolean renderFullBright )
{
this.renderFullBright = renderFullBright;