Subversion Repositories gelsvn

Rev

Rev 607 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 607 Rev 614
Line 499... Line 499...
499
        theConsole.printf("It also projects the vertices onto the eigenvectors - thus transforming the mesh");
499
        theConsole.printf("It also projects the vertices onto the eigenvectors - thus transforming the mesh");
500
        theConsole.printf("to this basis.");
500
        theConsole.printf("to this basis.");
501
        theConsole.printf("Note that this will stall the computer for a large mesh - as long as we use Lapack.");
501
        theConsole.printf("Note that this will stall the computer for a large mesh - as long as we use Lapack.");
502
        return;
502
        return;
503
    }
503
    }
504
    avo().harmonics_analyze_mesh();
504
    avo().harmonics_analyze_mesh(theConsole);
505
    return;
505
    return;
506
}
506
}
507
 
507
 
508
 
508
 
509
void console_partial_reconstruct(const std::vector<std::string> & args)
509
void console_partial_reconstruct(const std::vector<std::string> & args)
Line 1227... Line 1227...
1227
    init_glut(argc, argv);
1227
    init_glut(argc, argv);
1228
    init_gl();
1228
    init_gl();
1229
	
1229
	
1230
    theConsole.print("Welcome to MeshEdit");
1230
    theConsole.print("Welcome to MeshEdit");
1231
    theConsole.newline();
1231
    theConsole.newline();
1232
    
1232
   
1233
    Harmonics::init(theConsole);
-
 
1234
	
-
 
1235
    if(argc>1){		
1233
    if(argc>1){		
1236
        vector<string> files;
1234
        vector<string> files;
1237
		ae.get_all_args(files);
1235
		ae.get_all_args(files);
1238
		for(size_t i=1;i<files.size();++i)
1236
		for(size_t i=1;i<files.size();++i)
1239
			get_vis_obj(i-1).reload(files[i]);
1237
			get_vis_obj(i-1).reload(files[i]);