From 80062e205e3d4e011542ac785e67d1168cae9b86 Mon Sep 17 00:00:00 2001 From: curt <curt> Date: Mon, 20 Nov 2000 21:28:08 +0000 Subject: [PATCH] Oops, fixed a typo in match.cxx. --- src/BuildTiles/Match/match.cxx | 6 +++--- src/BuildTiles/Parallel/fgfs-launch-clients | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/BuildTiles/Match/match.cxx b/src/BuildTiles/Match/match.cxx index d513f793..3b7693bb 100644 --- a/src/BuildTiles/Match/match.cxx +++ b/src/BuildTiles/Match/match.cxx @@ -307,15 +307,15 @@ void FGMatch::split_tile( FGConstruct& c ) { } if ( ! se_flag ) { se_node = Point3D( max.x, min.y, 0.0 ); - se_normal = fake_normal( sw_node ); + se_normal = fake_normal( se_node ); } if ( ! nw_flag ) { nw_node = Point3D( min.x, max.y, 0.0 ); - nw_normal = fake_normal( sw_node ); + nw_normal = fake_normal( nw_node ); } if ( ! ne_flag ) { ne_node = Point3D( max.x, max.y, 0.0 ); - ne_normal = fake_normal( sw_node ); + ne_normal = fake_normal( ne_node ); } // separate nodes and normals into components diff --git a/src/BuildTiles/Parallel/fgfs-launch-clients b/src/BuildTiles/Parallel/fgfs-launch-clients index 5a943db8..19c72c3d 100755 --- a/src/BuildTiles/Parallel/fgfs-launch-clients +++ b/src/BuildTiles/Parallel/fgfs-launch-clients @@ -101,6 +101,7 @@ for i in $CLIENTS_RUDE; do # ssh -n $i "$KILL_COMMAND" RMT_COMMAND="source ~/.profile; nice $CLIENT --host=$SERVER_HOST --port=$SERVER_PORT --work-dir=$WORK_BASE --output-dir=$OUTPUT_DIR --rude AirportArea AirportObj GSHHS-Ponds GSHHS-Islands GSHHS-Lakes GSHHS-LandMass USA-Hydro USA-Urban DEM-3 DEM-30" + # RMT_COMMAND="source ~/.profile; nice $CLIENT --host=$SERVER_HOST --port=$SERVER_PORT --work-dir=$WORK_BASE --output-dir=$OUTPUT_DIR --rude AirportArea AirportObj GSHHS-Ponds GSHHS-Islands GSHHS-Lakes GSHHS-LandMass LC-USA USA-Hydro USA-Urban DEM-3 DEM-30" echo "client command:" echo "" echo "$RMT_COMMAND"