Skip to content
Snippets Groups Projects
Commit 8563a532 authored by Johannes Eder's avatar Johannes Eder
Browse files

added movement of tool tips

refs 1293
parent 1058430c
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@ import static org.fortiss.tooling.graphicsGL.ui.util.Graph3DUtil.importCharacter
import static org.fortiss.tooling.graphicsGL.ui.util.Graph3DUtil.importLetters;
import static org.fortiss.tooling.graphicsGL.ui.util.Graph3DUtil.importNumbers;
import static org.fortiss.tooling.graphicsGL.util.Graphics3DModelElementFactory.BLACK;
import static org.fortiss.tooling.graphicsGL.util.Graphics3DModelElementFactory.LIGHT_BLUE;
import static org.fortiss.tooling.graphicsGL.util.Graphics3DModelElementFactory.WHITE;
import static org.lwjgl.util.glu.GLU.GLU_FILL;
......@@ -103,7 +104,7 @@ public class Graph3DViewObject extends ViewObjectBase {
for(GraphPoint3D p : graph.getPointsList()) {
if(p == highlighted) {
// setColor(BLUE);
setColor(WHITE);
setColor(LIGHT_BLUE);
// GraphPoint3D p2 = EcoreUtil.copy(p);
// p2.getColor().setBlue(p2.getColor().getBlue() * 1.1f);
// p2.getColor().setRed(p2.getColor().getRed() * 1.1f);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment