X-Git-Url: https://git.piment-noir.org/?p=SugarCubes.git;a=blobdiff_plain;f=UIImplementation.pde;fp=UIImplementation.pde;h=0f73b99aaa3a3839b5ebf06e72c0ba72d24de0fa;hp=b2320c6c0a4dc4aa03bebe652b3b7f827306ac4c;hb=0298d25686389fb2c9229edc3a21194978d66269;hpb=30673de2c74545b86d8e1e3492a8a1637c4ad454 diff --git a/UIImplementation.pde b/UIImplementation.pde index b2320c6..0f73b99 100644 --- a/UIImplementation.pde +++ b/UIImplementation.pde @@ -139,7 +139,8 @@ FloatBuffer vertData; pgl.vertexAttribPointer(vertLoc, 3, PGL.FLOAT, false, 7 * SIZEOF_FLOAT, 0); pgl.vertexAttribPointer(colorLoc, 4, PGL.FLOAT, false, 7 * SIZEOF_FLOAT, 3 * SIZEOF_FLOAT); - + javax.media.opengl.GL2 gl2 = (javax.media.opengl.GL2) ((PJOGL)pgl).gl; + gl2.glPointSize(2f); pgl.drawArrays(PGL.POINTS, 0, nvert); pgl.disableVertexAttribArray(vertLoc); @@ -182,7 +183,7 @@ FloatBuffer allocateDirectFloatBuffer(int n) { float in = .15; noStroke(); fill(#393939); - drawBox(c.x+in, c.y+in, c.z+in, c.rx, c.ry, c.rz, Cube.EDGE_WIDTH-in*2, Cube.EDGE_HEIGHT-in*2, Cube.EDGE_WIDTH-in*2, Cube.CHANNEL_WIDTH-in); + // drawBox(c.x+in, c.y+in, c.z+in, c.rx, c.ry, c.rz, Cube.EDGE_WIDTH-in*2, Cube.EDGE_HEIGHT-in*2, Cube.EDGE_WIDTH-in*2, Cube.CHANNEL_WIDTH-in); } void drawBox(float x, float y, float z, float rx, float ry, float rz, float xd, float yd, float zd, float sw) {