use of eu.esdihumboldt.util.geometry.interpolation.model.impl.ArcByPointsImpl in project hale by halestudio.
the class GridInterpolationTest method testByPoints3.
@Test
public void testByPoints3() throws IOException {
Arc arc = new ArcByPointsImpl(new Coordinate(4, 4), new Coordinate(4, 6), new Coordinate(2, 6));
gridInterpolationTest(arc, 0.1, false);
}
use of eu.esdihumboldt.util.geometry.interpolation.model.impl.ArcByPointsImpl in project hale by halestudio.
the class SplitInterpolationTest method testByPoints3.
@Test
public void testByPoints3() throws IOException {
Arc arc = new ArcByPointsImpl(new Coordinate(4, 4), new Coordinate(4, 6), new Coordinate(2, 6));
splitInterpolationTest(arc, 0.1);
}
Aggregations