Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WKms.java @ 5084:ca45dd039b54 slt-simplify-cross-sections
Log the number of points of cross sections to see the effect of the simplification.
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Sun, 24 Feb 2013 21:38:09 +0100 |
parents | 4d457c68b1d3 |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import gnu.trove.TDoubleArrayList; public interface WKms extends NamedObject { int size(); double getKm(int index); double getW(int index); TDoubleArrayList allKms(); TDoubleArrayList allWs(); boolean guessWaterIncreasing(); } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :