From: curt Date: Sun, 21 Mar 1999 15:48:00 +0000 (+0000) Subject: Removed Dem2node from the Tools fold. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=88dd01563918ee273bebd71c1f4f2ff514e2275c;p=flightgear.git Removed Dem2node from the Tools fold. Tweaked the triangulator options to add quality mesh refinement. --- diff --git a/Main/construct.cxx b/Main/construct.cxx index 0c5ccb7c3..ddc15922d 100644 --- a/Main/construct.cxx +++ b/Main/construct.cxx @@ -169,8 +169,8 @@ main(int argc, char **argv) { // lon = -146.248360; lat = 61.133950; // PAVD (Valdez, AK) // lon = -110.664244; lat = 33.352890; // P13 // lon = -93.211389; lat = 45.145000; // KANE - lon = -92.486188; lat = 44.590190; // KRGK - // lon = -89.744682312011719; lat= 29.314495086669922; + // lon = -92.486188; lat = 44.590190; // KRGK + lon = -89.744682312011719; lat= 29.314495086669922; FGBucket b( lon, lat ); @@ -189,6 +189,10 @@ main(int argc, char **argv) { // $Log$ +// Revision 1.6 1999/03/21 15:48:01 curt +// Removed Dem2node from the Tools fold. +// Tweaked the triangulator options to add quality mesh refinement. +// // Revision 1.5 1999/03/21 14:02:05 curt // Added a mechanism to dump out the triangle structures for viewing. // Fixed a couple bugs in first pass at triangulation. diff --git a/Tools/Makefile.am b/Tools/Makefile.am index eca54bea6..a448801a7 100644 --- a/Tools/Makefile.am +++ b/Tools/Makefile.am @@ -7,7 +7,6 @@ SUBDIRS = \ Utils \ Areas \ AssemTris \ - Dem2node \ FixNode \ FixObj \ SplitTris \ diff --git a/Triangulate/triangle.cxx b/Triangulate/triangle.cxx index ddef5bf03..1c2476837 100644 --- a/Triangulate/triangle.cxx +++ b/Triangulate/triangle.cxx @@ -318,7 +318,7 @@ int FGTriangle::run_triangulate() { // from zero (z), assign a regional attribute to each element (A), // and produce an edge list (e), and a triangle neighbor list (n). - triangulate("pczAen", &in, &out, &vorout); + triangulate("pczq15Aen", &in, &out, &vorout); // TEMPORARY write_out_data(&out); @@ -349,6 +349,10 @@ int FGTriangle::run_triangulate() { // $Log$ +// Revision 1.9 1999/03/21 15:48:02 curt +// Removed Dem2node from the Tools fold. +// Tweaked the triangulator options to add quality mesh refinement. +// // Revision 1.8 1999/03/21 14:02:06 curt // Added a mechanism to dump out the triangle structures for viewing. // Fixed a couple bugs in first pass at triangulation.