X-Git-Url: https://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=tim%2Fprune%2Fthreedee%2FJava3DWindow.java;h=0bde564c373fe45199aca872bdbcf49f18cf97de;hp=e3531f08d6acb3f4914e632c6236a0ef2121fd9d;hb=112bb0c9b46894adca9a33ed8c99ea712b253185;hpb=54b9d8bc8f0025ccf97a67d9dd217ef1f9cf082f diff --git a/tim/prune/threedee/Java3DWindow.java b/tim/prune/threedee/Java3DWindow.java index e3531f0..0bde564 100644 --- a/tim/prune/threedee/Java3DWindow.java +++ b/tim/prune/threedee/Java3DWindow.java @@ -465,7 +465,7 @@ public class Java3DWindow implements ThreeDWindow private static Group createWaypoint(Point3d inPointPos) { Material mat = getWaypointMaterial(); - // TODO: sort symbol scaling + // MAYBE: sort symbol scaling Sphere dot = new Sphere(0.35f); // * symbolScaling / 100f); return createBall(inPointPos, dot, mat); } @@ -485,7 +485,7 @@ public class Java3DWindow implements ThreeDWindow private static Group createTrackpoint(Point3d inPointPos, byte inHeightCode) { Material mat = getTrackpointMaterial(inHeightCode); - // TODO: sort symbol scaling + // MAYBE: sort symbol scaling Sphere dot = new Sphere(0.2f); // * symbolScaling / 100f); return createBall(inPointPos, dot, mat); }