comparison flys-artifacts/src/main/java/de/intevation/flys/jfree/DoubleBounds.java @ 3723:7b14d00bca8a

Cosmetics, docs. flys-artifacts/trunk@5391 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Fri, 07 Sep 2012 13:49:14 +0000
parents 73b15736cb80
children 2f6d4f92d628
comparison
equal deleted inserted replaced
3722:c91e7db0fd4b 3723:7b14d00bca8a
40 public void applyBounds(ValueAxis axis) { 40 public void applyBounds(ValueAxis axis) {
41 axis.setRange(new Range(lower, upper)); 41 axis.setRange(new Range(lower, upper));
42 } 42 }
43 43
44 44
45 /**
46 * Set extended range to ValueAxis.
47 * @param percent how many percent to extend (in each direction,
48 * thus 10 percent on [0,100] -> [-10,110].
49 */
45 @Override 50 @Override
46 public void applyBounds(ValueAxis axis, int percent) { 51 public void applyBounds(ValueAxis axis, int percent) {
47 double space = (upper - lower) / 100 * percent; 52 double space = (upper - lower) / 100 * percent;
48 axis.setRange(new Range(lower-space, upper+space)); 53 axis.setRange(new Range(lower-space, upper+space));
49 } 54 }

http://dive4elements.wald.intevation.org