Author: paperwing
Date: 2011-07-11 08:02:28 -0700 (Mon, 11 Jul 2011)
New Revision: 26133
Modified:
csplugins/trunk/toronto/yuedong/paperwing-impl/src/main/java/org/cytoscape/paperwing/internal/Graphics.java
Log:
updated pointer
Modified:
csplugins/trunk/toronto/yuedong/paperwing-impl/src/main/java/org/cytoscape/paperwing/internal/Graphics.java
===================================================================
---
csplugins/trunk/toronto/yuedong/paperwing-impl/src/main/java/org/cytoscape/paperwing/internal/Graphics.java
2011-07-11 14:20:09 UTC (rev 26132)
+++
csplugins/trunk/toronto/yuedong/paperwing-impl/src/main/java/org/cytoscape/paperwing/internal/Graphics.java
2011-07-11 15:02:28 UTC (rev 26133)
@@ -1141,31 +1141,31 @@
glu.gluQuadricNormals(pointerQuadric, GLU.GLU_NONE);
float axisLength = 0.055f;
- float overHang = 0.0225f;
+ float overHang = 0.0275f;
float radius = 0.003f;
gl.glNewList(pointerListIndex, GL2.GL_COMPILE);
// glu.gluSphere(pointerQuadric, SMALL_SPHERE_RADIUS / 4, 4, 4);
- // gl.glColor3f(0.73f, 0.73f, 0.72f);
+ gl.glColor3f(0.83f, 0.73f, 0.72f);
// Draw X axis
gl.glTranslatef(-overHang, 0.0f, 0.0f);
gl.glRotatef(90, 0, 1, 0);
- glu.gluCylinder(edgeQuadric, radius, radius, axisLength, 4, 1);
+ glu.gluCylinder(pointerQuadric, radius, radius, axisLength, 4,
1);
gl.glRotatef(-90, 0, 1, 0);
gl.glTranslatef(overHang, 0.0f, 0.0f);
// Draw Y axis
gl.glTranslatef(0.0f, -overHang, 0.0f);
gl.glRotatef(-90, 1, 0, 0);
- glu.gluCylinder(edgeQuadric, radius, radius, axisLength, 4, 1);
+ glu.gluCylinder(pointerQuadric, radius, radius, axisLength, 4,
1);
gl.glRotatef(90, 1, 0, 0);
gl.glTranslatef(0.0f, overHang, 0.0f);
// Draw Z axis
gl.glTranslatef(0.0f, 0.0f, -overHang);
- glu.gluCylinder(edgeQuadric, radius, radius, axisLength, 4, 1);
+ glu.gluCylinder(pointerQuadric, radius, radius, axisLength, 4,
1);
gl.glTranslatef(0.0f, 0.0f, overHang);
gl.glEndList();
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.