Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/WaterLineArtifact.java @ 3468:f37e7e8907cb
merged flys-artifacts/2.8.1
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:39 +0200 |
parents | 31168ac9c7e7 |
children | 6153c50f78cf |
comparison
equal
deleted
inserted
replaced
3387:5ffad8bde8ad | 3468:f37e7e8907cb |
---|---|
1 package de.intevation.flys.artifacts; | |
2 | |
3 import de.intevation.flys.artifacts.geom.Lines; | |
4 import de.intevation.flys.model.FastCrossSectionLine; | |
5 /** | |
6 * Interface, Artifact can create WaterLines (Water against Cross-Profile). | |
7 */ | |
8 public interface WaterLineArtifact { | |
9 | |
10 /** Get points that define a line of a (water)facet against a cross- | |
11 * section. */ | |
12 public Lines.LineData getWaterLines(int facetIdx, FastCrossSectionLine csl, double d, double w); | |
13 } | |
14 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |