]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/threedee/Java3DWindow.java
Version 8, September 2009
[GpsPrune.git] / tim / prune / threedee / Java3DWindow.java
index e3531f08d6acb3f4914e632c6236a0ef2121fd9d..0bde564c373fe45199aca872bdbcf49f18cf97de 100644 (file)
@@ -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);
        }