Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/WaterLineArtifact.java @ 4482:b5624ef2808f
Merged
author | Christian Lins <christian.lins@intevation.de> |
---|---|
date | Tue, 13 Nov 2012 16:14:44 +0100 |
parents | 6153c50f78cf |
children |
comparison
equal
deleted
inserted
replaced
4481:d9e3660fa462 | 4482:b5624ef2808f |
---|---|
1 package de.intevation.flys.artifacts; | 1 package de.intevation.flys.artifacts; |
2 | |
3 import de.intevation.artifacts.CallContext; | |
2 | 4 |
3 import de.intevation.flys.artifacts.geom.Lines; | 5 import de.intevation.flys.artifacts.geom.Lines; |
4 import de.intevation.flys.model.FastCrossSectionLine; | 6 import de.intevation.flys.model.FastCrossSectionLine; |
7 | |
8 | |
5 /** | 9 /** |
6 * Interface, Artifact can create WaterLines (Water against Cross-Profile). | 10 * Interface, Artifact can create WaterLines (Water against Cross-Profile). |
7 */ | 11 */ |
8 public interface WaterLineArtifact { | 12 public interface WaterLineArtifact { |
9 | 13 |
10 /** Get points that define a line of a (water)facet against a cross- | 14 /** Get points that define a line of a (water)facet against a cross- |
11 * section. */ | 15 * section. */ |
12 public Lines.LineData getWaterLines(int facetIdx, FastCrossSectionLine csl, double d, double w); | 16 public Lines.LineData getWaterLines( |
17 int facetIdx, | |
18 FastCrossSectionLine csl, | |
19 double d, | |
20 double w, | |
21 CallContext context); | |
13 } | 22 } |
14 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : | 23 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |