From b019a7d44a103cbce0a7e6a0cc618779855c62c1 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 17 Mar 2003 04:48:50 +0000 Subject: [PATCH] Initial revision of utility to fit a much reduced size terrain surface to a higher res data set, attempting to preserve the most important features in the original data set. The user can specify a min and max number of output nodes as well as a maximum error tolerance that should not be exceeded (between the original and simplified surfaces.) --- src/Prep/ArrayFit/arrayfit.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Prep/ArrayFit/arrayfit.cxx b/src/Prep/ArrayFit/arrayfit.cxx index 6633d2cc..4f5b1192 100644 --- a/src/Prep/ArrayFit/arrayfit.cxx +++ b/src/Prep/ArrayFit/arrayfit.cxx @@ -186,7 +186,7 @@ int main( int argc, char **argv ) { } else { x = basex + i * dx; y = basey + j * dy; - z = a.get_point( i, j ); + z = a.get_array_elev( i, j ); pending.push_back( Point3D(x, y, z) ); } }