1
0
Fork 0

Oops, fixed a typo in match.cxx.

This commit is contained in:
curt 2000-11-20 21:28:08 +00:00
parent 41733cf6cc
commit 80062e205e
2 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -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"