1
0
Fork 0

Rename: FGGenFans -> TGGenFans

This commit is contained in:
curt 2003-02-26 20:36:15 +00:00
parent 61445e9af6
commit 7709953518
3 changed files with 6 additions and 6 deletions

View file

@ -175,7 +175,7 @@ int FGGenOutput::build( FGConstruct& c ) {
// build the trifan list
cout << "total triangles = " << tri_elements.size() << endl;
FGGenFans f;
TGGenFans f;
for ( i = 0; i < FG_MAX_AREA_TYPES; ++i ) {
triele_list area_tris;
area_tris.erase( area_tris.begin(), area_tris.end() );

View file

@ -143,7 +143,7 @@ static bool in_fan(int index, const int_list& fan ) {
// recursive build fans from triangle list
opt_list FGGenFans::greedy_build( triele_list tris ) {
opt_list TGGenFans::greedy_build( triele_list tris ) {
cout << "starting greedy build of fans" << endl;
fans.clear();
@ -240,7 +240,7 @@ opt_list FGGenFans::greedy_build( triele_list tris ) {
// report average fan size
double FGGenFans::ave_size() {
double TGGenFans::ave_size() {
double sum = 0.0;
opt_list_iterator current = fans.begin();

View file

@ -46,7 +46,7 @@ typedef opt_list::iterator opt_list_iterator;
typedef opt_list::const_iterator const_opt_list_iterator;
class FGGenFans {
class TGGenFans {
private:
@ -59,8 +59,8 @@ private:
public:
// Constructor && Destructor
inline FGGenFans() { }
inline ~FGGenFans() { }
inline TGGenFans() { }
inline ~TGGenFans() { }
// recursive build fans from triangle list
// opt_list greedy_build( triele_list tris );