From: Mark Slee Date: Fri, 7 Mar 2014 08:11:24 +0000 (-0800) Subject: Set point size, re-comment drawBox() X-Git-Url: https://git.piment-noir.org/?p=SugarCubes.git;a=commitdiff_plain;h=0298d25686389fb2c9229edc3a21194978d66269 Set point size, re-comment drawBox() --- 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) {