Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/WaterLineArtifact.java @ 3818:dc18457b1cef
merged flys-artifacts/pre2.7-2012-03-16
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:59 +0200 |
parents | d626ae185305 |
children | 9d2a06c3a134 |
comparison
equal
deleted
inserted
replaced
2456:60ab1054069d | 3818:dc18457b1cef |
---|---|
1 package de.intevation.flys.artifacts; | |
2 | |
3 | |
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 double [][] getWaterLines(int facetIdx, FastCrossSectionLine csl); | |
13 } | |
14 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |