Subversion Repositories gelsvn

Rev

Rev 157 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 157 Rev 158
Line 31... Line 31...
31
    
31
    
32
    cout << "Perform quadric based simplification ... " << endl;
32
    cout << "Perform quadric based simplification ... " << endl;
33
    if(argc>2)
33
    if(argc>2)
34
			quadric_simplify(m,atoi(argv[2]));
34
			quadric_simplify(m,atoi(argv[2]));
35
		else
35
		else
36
			quadric_simplify(m,1500);
36
			quadric_simplify(m,10000);
37
    
37
    
38
    cout << "Removing caps and needles ... " << endl;
38
    cout << "Removing caps and needles ... " << endl;
39
    remove_caps_from_trimesh(m, M_PI * 0.85);
39
    remove_caps_from_trimesh(m, M_PI * 0.85);
40
    remove_needles_from_trimesh(m, 1e-4);
40
    remove_needles_from_trimesh(m, 1e-4);
41
    
41