Uses of Interface
org.tinfour.interpolation.IVertexValuator
-
Packages that use IVertexValuator Package Description org.tinfour.contour Provides classes in support of contouring from Delaunay Triangulationsorg.tinfour.interpolation Provides interfaces and supporting classes for performing interpolation over TINsorg.tinfour.utils Provides both high-level and general utilities for using the Tinfour packages. -
-
Uses of IVertexValuator in org.tinfour.contour
Constructors in org.tinfour.contour with parameters of type IVertexValuator Constructor Description ContourBuilderForTin(IIncrementalTin tin, IVertexValuator vertexValuator, double[] zContour, boolean buildRegions)Creates a set of contours at the specified vertical coordinates from the Delaunay Triangulation. -
Uses of IVertexValuator in org.tinfour.interpolation
Classes in org.tinfour.interpolation that implement IVertexValuator Modifier and Type Class Description classVertexValuatorDefaultA valuator that returns the Z coordinate of a vertex.Methods in org.tinfour.interpolation with parameters of type IVertexValuator Modifier and Type Method Description doubleIInterpolatorOverTin. interpolate(double x, double y, IVertexValuator valuator)Perform interpolation using the specified valuator.doubleInverseDistanceWeightingInterpolator. interpolate(double x, double y, IVertexValuator valuator)Perform inverse distance weighting interpolation.doubleNaturalNeighborInterpolator. interpolate(double x, double y, IVertexValuator valuator)Perform interpolation using Sibson's C0 method.doubleTriangularFacetInterpolator. interpolate(double x, double y, IVertexValuator valuator)Perform linear interpolation treating the triangle that contains the query point as a flat plane.doubleTriangularFacetSpecialInterpolator. interpolate(double x, double y, IVertexValuator valuator)Performs an interpolation with special handling to provide values for regions to the exterior of the Delaunay Triangulation.doubleTriangularFacetInterpolator. interpolateWithExteriorSupport(double x, double y, IVertexValuator valuator)Performs an interpolation with special handling to provide values for regions to the exterior of the Delaunay Triangulation. -
Uses of IVertexValuator in org.tinfour.utils
Classes in org.tinfour.utils that implement IVertexValuator Modifier and Type Class Description classSmoothingFilterAn implementation of the vertex valuator that processes the vertices in a Constrained Delaunay Triangulation and applies a low-pass filter over the data.
-