worldwind

Determining visible area from globe frustum

I'm working with a mapping application (worldwind) and trying to determine the minimum and maximum latitudes and longitudes that are currently displayed. I have access to the frustum, but I'm not sure how to account for the fact that the globe can have its heading and/or pitch changed. Any help on this problem would be appreciated. than...

WorldWind: 3D-Objects - Sphere for Moon, how?

hi, I asked this question in an Nasa WorldWind forum but haven't got a reply yet http://forum.worldwindcentral.com/showthread.php?t=24428 So, perhaps you could help me :). I'm still playing around with WWJ and what you posted here http://forum.worldwindcentral.com/showthread.php?t=24318 THX! currently I'm trying to add different ...

Poll for pressed buttons in Java

I have a WorldWind application build based on the Java SDK. It has a great event handler for detecting when you click on objects, but I've run into a snag. While I can click on and select individual objects, I can't determine if the user is pressing the control key while they click (if they want to select multiple objects). I can impleme...

Overriding a method in statically created objects

All, Due to a bug in a library I'm using, I need to override the dispose() method on all objects extending a certain class and make it a NO-OP. I know that if I'm making new instances of the classes directly, this is easy to do: layerManager = new LayerManagerLayer(wwd) { @Override public void dispose() {} }; The problem is ...