X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2Fthreedee%2FThreeDWindow.java;h=f4b3ed34d4b195f1c7a02a0d3b0476825e27b3a1;hb=88f2c3647ed9e055090484f01a959d4581f85e7d;hp=52aeba36fe02ec7bee90345bc7d56e4b5b7f1cb1;hpb=23959e65a6a0d581e657b07186d18b7a1ac5afeb;p=GpsPrune.git diff --git a/tim/prune/threedee/ThreeDWindow.java b/tim/prune/threedee/ThreeDWindow.java index 52aeba3..f4b3ed3 100644 --- a/tim/prune/threedee/ThreeDWindow.java +++ b/tim/prune/threedee/ThreeDWindow.java @@ -1,5 +1,6 @@ package tim.prune.threedee; +import tim.prune.DataStatus; import tim.prune.data.Track; /** @@ -14,9 +15,29 @@ public interface ThreeDWindow */ public void setTrack(Track inTrack); + /** + * @param inFactor altitude factor to use + */ + public void setAltitudeFactor(double inFactor); + + /** + * @param inDefinition image definition (image or not, source, zoom) + */ + public void setBaseImageParameters(ImageDefinition inDefinition); + + /** + * @param inDefinition terrain definition (terrain or not, resolution) + */ + public void setTerrainParameters(TerrainDefinition inDefinition); + + /** + * @param inStatus current data status for caching + */ + public void setDataStatus(DataStatus inStatus); /** * Show the window + * @throws ThreeDException when 3d classes not found */ public void show() throws ThreeDException; }