Update to Worldwind release 0.4.1
[worldwind-tracker.git] / gov / nasa / worldwind / render / Pedestal.java
blob1fc8235c06347167dd9f200a0bdba4f898cd8d8f
1 /*
2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
5 All Rights Reserved.
6 */
7 package gov.nasa.worldwind.render;
9 import gov.nasa.worldwind.geom.Position;
11 /**
12 * @author tag
13 * @version $Id$
15 public class Pedestal extends UserFacingIcon
17 private double spacingPixels = 2d;
18 private double scale = 1d;
20 public Pedestal(String iconPath, Position iconPosition)
22 super(iconPath, iconPosition);
25 public double getSpacingPixels()
27 return spacingPixels;
30 public void setSpacingPixels(double spacingPixels)
32 this.spacingPixels = spacingPixels;
35 public double getScale()
37 return scale;
40 public void setScale(double scale)
42 this.scale = scale;