Subversion Repositories gelsvn

Rev

Rev 596 | Rev 614 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
386 jab 1
/*
2
 *  MeshEdit is a small application which allows you to load and edit a mesh.
3
 *  The mesh will be stored in GEL's half edge based Manifold data structure.
4
 *  A number of editing operations are supported. Most of these are accessible from the 
5
 *  console that pops up when you hit 'esc'.
6
 *
7
 *  Created by J. Andreas Bærentzen on 15/08/08.
8
 *  Copyright 2008 __MyCompanyName__. All rights reserved.
9
 *
10
 */
399 jab 11
 
12
#include <string>
386 jab 13
#include <iostream>
596 jab 14
#include <vector>
15
#include <algorithm>
16
 
17
#include <GL/glew.h>
18
 
19
#include <GLGraphics/Console.h>
20
 
21
 
386 jab 22
#include <CGLA/eigensolution.h>
23
#include <CGLA/Vec2d.h>
24
#include <CGLA/Vec3d.h>
25
#include <CGLA/Mat3x3d.h>
26
#include <CGLA/Mat2x2d.h>
27
#include <CGLA/Mat2x3d.h>
28
 
29
#include <LinAlg/Matrix.h>
30
#include <LinAlg/Vector.h>
31
#include <LinAlg/LapackFunc.h>
32
 
33
#include <GLGraphics/gel_glut.h>
34
 
35
#include <HMesh/Manifold.h>
596 jab 36
#include <HMesh/AttributeVector.h>
386 jab 37
#include <HMesh/mesh_optimization.h>
596 jab 38
#include <HMesh/curvature.h>
386 jab 39
#include <HMesh/triangulate.h>
596 jab 40
#include <HMesh/flatten.h>
41
#include <HMesh/dual.h>
386 jab 42
#include <HMesh/load.h>
387 jab 43
#include <HMesh/quadric_simplify.h>
44
#include <HMesh/smooth.h>
386 jab 45
#include <HMesh/x3d_save.h>
388 jab 46
#include <HMesh/obj_save.h>
434 jab 47
#include <HMesh/off_save.h>
387 jab 48
#include <HMesh/mesh_optimization.h>
388 jab 49
#include <HMesh/triangulate.h>
600 jab 50
#include <HMesh/cleanup.h>
51
#include <HMesh/cleanup.h>
388 jab 52
#include <HMesh/refine_edges.h>
53
#include <HMesh/subdivision.h>
386 jab 54
 
394 jab 55
#include <Util/Timer.h>
596 jab 56
#include <Util/ArgExtracter.h>
57
 
58
#include "polarize.h"
386 jab 59
#include "harmonics.h"
399 jab 60
#include "VisObj.h"
386 jab 61
 
391 jab 62
using namespace std;
63
using namespace HMesh;
64
using namespace Geometry;
65
using namespace GLGraphics;
66
using namespace CGLA;
67
using namespace Util;
68
using namespace LinAlg;
386 jab 69
 
596 jab 70
// Single global instance so glut can get access
71
Console theConsole;
72
bool console_visible = false;
73
 
74
 
391 jab 75
inline VisObj& get_vis_obj(int i)
76
{
596 jab 77
    static VisObj vo[9];
78
    return vo[i];
391 jab 79
}
80
 
596 jab 81
Console::variable<int> active(0);
82
 
391 jab 83
inline VisObj& avo()
84
{
596 jab 85
    return get_vis_obj(active);
391 jab 86
}
87
 
88
inline Manifold& active_mesh()
89
{
596 jab 90
    return avo().mesh();
391 jab 91
}
92
 
93
inline GLViewController& active_view_control()
94
{
596 jab 95
    return avo().view_control();
391 jab 96
}
97
 
386 jab 98
 
596 jab 99
 
386 jab 100
////////////////////////////////////////////////////////////////////////////////
596 jab 101
bool MyConsoleHelp(const std::vector<std::string> & args)
386 jab 102
{
596 jab 103
    theConsole.printf("");
104
    theConsole.printf("----------------- HELP -----------------");
105
    theConsole.printf("Press ESC key to open and close console");
106
    theConsole.printf("Press TAB to see the available commands and functions");
107
    theConsole.printf("Functions are shown in green and variables in yellow");
108
    theConsole.printf("Setting a value: [command] = value");
109
    theConsole.printf("Getting a value: [command]");
110
    theConsole.printf("Functions: [function] [arg1] [arg2] ...");
111
    theConsole.printf("Entering arg1=? or arg1=help will give a description.");
112
    theConsole.printf("History: Up and Down arrow keys move through history.");
113
    theConsole.printf("Tab Completion: TAB does tab completion and makes suggestions.");
114
    theConsole.printf("");
115
    theConsole.printf("Keyboard commands (when console is not active):");
116
    theConsole.printf("w   : switch to display.render_mode = wireframe");
117
    theConsole.printf("i   : switch to display.render_mode = isophotes");
118
    theConsole.printf("r   : switch to display.render_mode = reflection");
119
    theConsole.printf("m   : switch to display.render_mode = metallic");
120
    theConsole.printf("g   : switch to display.render_mode = glazed");
121
    theConsole.printf("n   : switch to display.render_mode = normal");
122
    theConsole.printf("h   : switch to display.render_mode = harmonics");
123
    theConsole.printf("f   : toggle smooth/flat shading");
124
    theConsole.printf("1-9 : switch between active meshes.");
125
    theConsole.printf("d   : (display.render_mode = harmonics) diffuse light on and off");
126
    theConsole.printf("h   : (display.render_mode = harmonics) highlight on and off ");
127
    theConsole.printf("+/- : (display.render_mode = harmonics) which eigenvector to show");
128
    theConsole.printf("q   : quit program");
129
    theConsole.printf("ESC : open console");
130
    theConsole.printf("");
131
    theConsole.printf("Mouse: Left button rotates, middle zooms, right pans");
132
    theConsole.printf("----------------- HELP -----------------");
133
    theConsole.printf("");
134
    return true;
386 jab 135
}
136
 
596 jab 137
bool wantshelp(const std::vector<std::string> & args)
391 jab 138
{
596 jab 139
    if(args.size() == 0) 
140
        return false;
399 jab 141
 
596 jab 142
    string str = args[0];
386 jab 143
 
596 jab 144
    if(str=="help" || str=="HELP" || str=="Help" || str=="?") 
145
        return true;
391 jab 146
 
596 jab 147
    return false;
386 jab 148
}
149
 
596 jab 150
/// Function that aligns two meshes.
151
void console_align(const std::vector<std::string> & args)
434 jab 152
{
596 jab 153
    if(wantshelp(args)) {
154
        theConsole.printf("usage: align <dest> <src>");
155
        theConsole.printf("This function aligns dest mesh with src");
156
        theConsole.printf("In practice the GLViewController of src is copied to dst.");
157
        theConsole.printf("both arguments are mandatory and must be numbers between 1 and 9.");
158
        theConsole.printf("Note that results might be unexpexted if the meshes are not on the same scale");
159
    }
434 jab 160
 
596 jab 161
    int dest = 0;
434 jab 162
 
596 jab 163
    if(args.size()>0){
164
        istringstream a0(args[0]);
165
        a0 >> dest;
166
        --dest;
167
 
168
        if(dest <0 || dest>8)
169
        {
170
            theConsole.printf("dest mesh out of range (1-9)");
171
            return;
172
        }
173
    }
174
    else
175
    {
176
        theConsole.printf("neither source nor destination mesh?!");
177
        return;
178
    }
434 jab 179
 
596 jab 180
    int src = 0;
181
    if(args.size()>1){
182
        istringstream a1(args[1]);
183
        a1 >> src;
184
        --src;
185
 
186
        if(src <0 || src>8)
187
        {
188
            theConsole.printf("src mesh out of range (1-9)");
189
            return;
190
        }
415 jab 191
    }
596 jab 192
    else
193
    {
194
        theConsole.printf("no src mesh?");
195
        return;
415 jab 196
    }
596 jab 197
    get_vis_obj(dest).view_control() = get_vis_obj(src).view_control();
412 jab 198
}
199
 
596 jab 200
void console_polarize(const std::vector<std::string> & args)
412 jab 201
{
596 jab 202
    if(wantshelp(args)) {
203
        theConsole.printf("usage: polarize");
204
        return;
415 jab 205
    }
596 jab 206
    int divisions = 10;
207
 
208
    if(args.size() > 0){
209
        istringstream a0(args[0]);
210
        a0 >> divisions;
415 jab 211
    }
412 jab 212
 
596 jab 213
    avo().save_old();
412 jab 214
 
596 jab 215
	double vmin, vmax;
216
    VertexAttributeVector<double> fun;
217
    VertexAttributeVector<double> par;
218
    make_height_fun(active_mesh(), fun, vmin, vmax);
219
    polarize_mesh(active_mesh(), fun, vmin, vmax, divisions, par);
415 jab 220
}
221
 
596 jab 222
void console_flatten(const std::vector<std::string> & args)
415 jab 223
{
596 jab 224
    if(wantshelp(args)) {
225
        theConsole.printf("usage: flatten <floater|harmonic|barycentric>");
226
        theConsole.printf("This function flattens a meshs with a simple boundary. It is mostly for showing mesh");
227
        theConsole.printf("parametrization methods. The current mesh MUST have a SINGLE boundary loop");
228
        theConsole.printf("This loop is mapped to the unit circle in a regular fashion (equal angle intervals).");
229
        theConsole.printf("All non boundary vertices are placed at the origin. Then the system is relaxed iteratively");
230
        theConsole.printf("using the weight scheme given as argument.");
231
        return;
415 jab 232
    }
596 jab 233
 
234
    avo().save_old();
235
 
236
    WeightScheme ws = BARYCENTRIC_W;
237
    if(args.size()>0){
238
        if(args[0] == "floater")
239
            ws = FLOATER_W;
240
        else if(args[0] == "harmonic")
241
            ws = HARMONIC_W;
242
        else if(args[0] == "lscm")
243
            ws = LSCM_W;
415 jab 244
    }
596 jab 245
    else
246
        return;
247
 
248
    flatten(active_mesh(), ws);
249
 
250
    return;
415 jab 251
}
252
 
596 jab 253
void console_save(const std::vector<std::string> & args)
415 jab 254
{
596 jab 255
    if(wantshelp(args)) {
256
        theConsole.printf("usage: save <name.x3d|name.obj> ");
257
 
258
        return;
415 jab 259
    }
596 jab 260
    const string& file_name = args[0];
261
    if(args.size() == 1){
262
        if(file_name.substr(file_name.length()-4,file_name.length())==".obj"){
263
            obj_save(file_name, active_mesh());
264
 
265
            return;
266
        }
267
        else if(file_name.substr(file_name.length()-4,file_name.length())==".off"){
268
            off_save(file_name, active_mesh());
269
 
270
            return;
271
        }
272
        else if(file_name.substr(file_name.length()-4,file_name.length())==".x3d"){
273
            x3d_save(file_name, active_mesh());
274
 
275
            return;
276
        }
277
        theConsole.printf("unknown format");
278
        return; 
279
    }
280
    theConsole.printf("usage: save <name.x3d|name.obj> ");
415 jab 281
}
282
 
283
 
596 jab 284
void console_refine_edges(const std::vector<std::string> & args)
415 jab 285
{
596 jab 286
    if(wantshelp(args)) {
287
        theConsole.printf("usage: refine.split_edges <length>");
288
        theConsole.printf("splits edges longer than <length>; default is 0.5 times average length");
289
        return;
415 jab 290
    }
596 jab 291
 
292
    avo().save_old();
293
 
294
    float thresh = 0.5f;
295
 
296
    if(args.size() > 0){
297
        istringstream a0(args[0]);
298
        a0 >> thresh;
415 jab 299
    }
596 jab 300
 
301
    float avg_length = average_edge_length(active_mesh());
302
 
303
    refine_edges(active_mesh(), thresh * avg_length);
304
 
305
    return;
306
 
415 jab 307
}
308
 
596 jab 309
void console_refine_faces(const std::vector<std::string> & args)
388 jab 310
{
596 jab 311
    if(wantshelp(args)) {
312
        theConsole.printf("usage: refine.split_faces ");
313
        theConsole.printf("usage:  Takes no arguments. Inserts a vertex at the centre of each face.");
314
 
315
        return;
316
    }
317
    avo().save_old();
399 jab 318
 
596 jab 319
    triangulate_by_vertex_face_split(active_mesh());
391 jab 320
 
596 jab 321
    return;
322
 
388 jab 323
}
324
 
596 jab 325
void console_cc_subdivide(const std::vector<std::string> & args)
388 jab 326
{
596 jab 327
    if(wantshelp(args)) {
328
        theConsole.printf("usage: refine.catmull_clark ");
329
        theConsole.printf("Does one step of Catmull-Clark subdivision");
330
 
331
        return;
332
    }
333
    avo().save_old();
399 jab 334
 
596 jab 335
    cc_split(active_mesh(),active_mesh());
336
    cc_smooth(active_mesh());
391 jab 337
 
596 jab 338
    return;
388 jab 339
}
340
 
596 jab 341
void console_doosabin_subdivide(const std::vector<std::string> & args)
388 jab 342
{
596 jab 343
    if(wantshelp(args)) {
344
        theConsole.printf("usage: refine.doo_sabin ");
345
        theConsole.printf("Does one step of Doo-Sabin Subdivision");
346
 
347
        return;
348
    }
349
    avo().save_old();
350
 
351
    cc_split(active_mesh(),active_mesh());
352
    dual(active_mesh());
353
 
354
    return;
388 jab 355
}
356
 
596 jab 357
void console_dual(const std::vector<std::string> & args)
394 jab 358
{
596 jab 359
    if(wantshelp(args)) 
360
    {
361
        theConsole.printf("usage: dual ");
362
        theConsole.printf("Produces the dual by converting each face to a vertex placed at the barycenter.");
363
        return;
364
    }
365
    avo().save_old();
394 jab 366
 
596 jab 367
    dual(active_mesh());
394 jab 368
 
596 jab 369
    return;
394 jab 370
}
388 jab 371
 
372
 
596 jab 373
void console_minimize_curvature(const std::vector<std::string> & args)
387 jab 374
{
596 jab 375
    if(wantshelp(args)) 
376
    {
377
        theConsole.printf("usage: optimize.minimize_curvature <anneal>");
378
        theConsole.printf("Flip edges to minimize mean curvature.");
379
        theConsole.printf("If anneal is true, simulated annealing (slow) is used rather than a greedy scheme");
380
        return;
381
    }
382
    avo().save_old();
391 jab 383
 
596 jab 384
    bool anneal=false;
385
    if(args.size() > 0)
386
    {
387
        istringstream a0(args[0]);
388
        a0 >> anneal;
389
    }
390
 
391
    minimize_curvature(active_mesh(), anneal);
392
    avo().post_create_display_list();
393
    return;
387 jab 394
}
395
 
596 jab 396
void console_minimize_dihedral(const std::vector<std::string> & args)
387 jab 397
{
596 jab 398
    if(wantshelp(args))
399
    {
400
        theConsole.printf("usage: optimize.minimize_dihedral <iter> <anneal> <use_alpha> <gamma> ");
401
        theConsole.printf("Flip edges to minimize dihedral angles.");
402
        theConsole.printf("Iter is the max number of iterations. anneal tells us whether to use ");
403
        theConsole.printf("simulated annealing and not greedy optimization. use_alpha (default=true) ");
404
        theConsole.printf("means to use angle and not cosine of anglegamma (default=4) is the power ");
405
        theConsole.printf("to which we raise the dihedral angle");
406
        return;
407
    }
408
    avo().save_old();
391 jab 409
 
596 jab 410
    int iter = 1000;
411
    if(args.size() > 0)
412
    {
413
        istringstream a0(args[0]);
414
        a0 >> iter;
415
    }
391 jab 416
 
596 jab 417
    bool anneal = false;
418
    if(args.size() > 1)
419
    {
420
        istringstream a0(args[1]);
421
        a0 >> anneal;
422
    }
391 jab 423
 
596 jab 424
    bool use_alpha = true;
425
    if(args.size() > 2)
426
    {
427
        istringstream a0(args[2]);
428
        a0 >> use_alpha;
429
    }
387 jab 430
 
596 jab 431
    float gamma = 4.0f;
432
    if(args.size() > 3)
433
    {
434
        istringstream a0(args[3]);
435
        a0 >> gamma;
436
    }
387 jab 437
 
596 jab 438
 
439
    minimize_dihedral_angle(active_mesh(), iter, anneal, use_alpha, gamma);
440
    return;
387 jab 441
}
442
 
596 jab 443
void console_maximize_min_angle(const std::vector<std::string> & args)
388 jab 444
{
596 jab 445
    if(wantshelp(args)) 
446
    {
447
        theConsole.printf("usage: optimize.maximize_min_angle <thresh> <anneal>");
448
        theConsole.printf("Flip edges to maximize min angle - to make mesh more Delaunay.");
449
        theConsole.printf("If the dot product of the normals between adjacent faces < thresh");
450
        theConsole.printf("no flip will be made. anneal selects simulated annealing rather ");
451
        theConsole.printf("nthan greedy optimization.");
452
        return;
453
    }
454
    avo().save_old();
455
 
456
    float thresh = 0.0f;
457
    if(args.size() > 0)
458
    {
459
        istringstream a0(args[0]);
460
        a0 >> thresh;
461
    }
462
    bool anneal = false;
463
    if(args.size() > 1)
464
    {
465
        istringstream a0(args[1]);
466
        a0 >> anneal;
467
    }
468
    maximize_min_angle(active_mesh(),thresh,anneal);
469
    return;
388 jab 470
}
471
 
472
 
596 jab 473
void console_optimize_valency(const std::vector<std::string> & args)
387 jab 474
{
596 jab 475
    if(wantshelp(args)) 
476
    {
477
        theConsole.printf("usage: optimize.valency <anneal> ");
478
        theConsole.printf("Optimizes valency for triangle meshes. Anneal selects simulated annealing rather than greedy optim.");
479
        return;
480
    }
481
    avo().save_old();
482
 
483
    bool anneal = false;
484
    if(args.size() > 0)
485
    {
486
        istringstream a0(args[0]);
487
        a0 >> anneal;
488
    }
489
    optimize_valency(active_mesh(), anneal);
490
    return;
387 jab 491
}
492
 
596 jab 493
void console_analyze(const std::vector<std::string> & args)
388 jab 494
{
596 jab 495
    if(wantshelp(args)) 
496
    {
497
        theConsole.printf("usage:  harmonics.analyze");
498
        theConsole.printf("Creates the Laplace Beltrami operator for the mesh and finds all eigensolutions.");
499
        theConsole.printf("It also projects the vertices onto the eigenvectors - thus transforming the mesh");
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.");
502
        return;
503
    }
504
    avo().harmonics_analyze_mesh();
505
    return;
388 jab 506
}
507
 
508
 
596 jab 509
void console_partial_reconstruct(const std::vector<std::string> & args)
386 jab 510
{
596 jab 511
    if(args.size() != 3)
512
        theConsole.printf("usage: haramonics.partial_reconstruct <e0> <e1> <s>");
434 jab 513
 
596 jab 514
    if(wantshelp(args)) {
515
        theConsole.printf("Reconstruct from projections onto eigenvectors. The two first arguments indicate");
516
        theConsole.printf("the eigenvector interval that we reconstruct from. The last argument is the ");
517
        theConsole.printf("scaling factor. Thus, for a vertex, v, the formula for computing the position, p, is:");
518
        theConsole.printf("for (i=e0; i<=e1;++i) p += proj[i] * Q[i][v] * s;");
519
        theConsole.printf("where proj[i] is the 3D vector containing the x, y, and z projections of the mesh onto");
520
        theConsole.printf("eigenvector i. Q[i][v] is the v'th coordinate of the i'th eigenvector.");
521
        theConsole.printf("Note that if vertex coordinates are not first reset, the result is probably unexpected.");
522
    }
523
    avo().save_old();
434 jab 524
 
596 jab 525
    if(args.size() != 3)
526
        return;
434 jab 527
 
596 jab 528
    int E0,E1;
529
    float scale;
530
    istringstream a0(args[0]);
531
    a0 >> E0;
532
    istringstream a1(args[1]);
533
    a1 >> E1;
534
    istringstream a2(args[2]);
535
    a2 >> scale;
536
    avo().harmonics_partial_reconstruct(E0,E1,scale);
537
    return;
386 jab 538
}
539
 
596 jab 540
void console_reset_shape(const std::vector<std::string> & args)
386 jab 541
{
596 jab 542
    if(wantshelp(args)) 
543
    {
544
        theConsole.printf("usage: harmonics.reset_shape ");
545
        theConsole.printf("Simply sets all vertices to 0,0,0. Call this before doing partial_reconstruct");
546
        theConsole.printf("unless you know what you are doing.");
547
        return;
548
    }
549
    avo().save_old();
550
    avo().harmonics_reset_shape();
551
    return;
386 jab 552
}
553
 
554
 
596 jab 555
void console_close_holes(const std::vector<std::string> & args)
388 jab 556
{
596 jab 557
    if(wantshelp(args)) 
558
    {
559
        theConsole.printf("usage: cleanup.close_holes");
560
        theConsole.printf("This function closes holes. It simply follows the loop of halfvectors which");
561
        theConsole.printf("enclose the hole and add a face to which they all point.");
562
        return;
563
    }
564
    avo().save_old();
565
 
566
    close_holes(active_mesh());
567
    return;
388 jab 568
}
386 jab 569
 
596 jab 570
void console_reload(const std::vector<std::string> & args)
388 jab 571
{
596 jab 572
    if(wantshelp(args)) 
573
    {
574
        theConsole.printf("usage:  load <file>");
575
        theConsole.printf("(Re)loads the current file if no argument is given, but");
576
        theConsole.printf("if an argument is given, then that becomes the current file");
577
        return;
578
    }
579
    avo().save_old();
580
 
581
    if(!avo().reload(args.size() > 0 ? args[0]:""))
582
        theConsole.printf("failed to load");
583
 
584
    return;
388 jab 585
}
586
 
587
 
596 jab 588
void console_add_mesh(const std::vector<std::string> & args)
387 jab 589
{
596 jab 590
    if(wantshelp(args)) 
591
    {
592
        theConsole.printf("usage:  add_mesh <file>");
593
        theConsole.printf("Loads the file but without clearing the mesh. Thus, the loaded mesh is added to the");
594
        theConsole.printf("current model.");
595
        return;
596
    }
597
    avo().save_old();
391 jab 598
 
596 jab 599
    if(!avo().add_mesh(args.size() > 0 ? args[0]:""))
600
        theConsole.printf("failed to load");
601
 
602
    return;
387 jab 603
}
596 jab 604
void console_valid(const std::vector<std::string> & args)
605
{
606
    if(wantshelp(args)) 
607
    {
608
        theConsole.printf("usage:  validity");
609
        theConsole.printf("Tests validity of Manifold");
610
        return;
611
    }
612
	if(valid(active_mesh()))
613
		theConsole.printf("Mesh is valid");
614
	else
615
		theConsole.printf("Mesh is invalid - check console output");
616
	return;
617
}
387 jab 618
 
596 jab 619
void console_info(const std::vector<std::string> & args)
391 jab 620
{
596 jab 621
    if(wantshelp(args)) 
622
    {
623
        theConsole.printf("usage:  info");
624
        theConsole.printf("Provides information about mesh.");
625
        return;
626
    }
627
    Vec3d p0, p7;
628
    bbox(active_mesh(), p0, p7);
629
    stringstream bbox_corners;
630
    bbox_corners << p0 << " - " << p7 << endl;
631
	theConsole.printf("Bounding box corners : %s", bbox_corners.str().c_str());
632
    map<int,int> val_hist;
633
 
634
    for(VertexIDIterator vi = active_mesh().vertices_begin(); vi != active_mesh().vertices_end(); ++vi)
635
    {
636
        int val = valency(active_mesh(), *vi);
637
        if(val_hist.find(val) == val_hist.end())
638
            val_hist[val] = 0;
639
        ++val_hist[val];
640
    }
641
 
642
    theConsole.printf("Valency histogam");
643
    for(map<int,int>::iterator iter = val_hist.begin(); iter != val_hist.end(); ++iter)
644
    {
645
        stringstream vhl;
646
        vhl << iter->first << ", " << iter->second;
647
        theConsole.printf("%d, %d", iter->first, iter->second);
648
    }
649
 
650
	theConsole.printf("Mesh contains %d faces", active_mesh().no_faces());
651
	theConsole.printf("Mesh contains %d halfedges", active_mesh().no_halfedges());
652
	theConsole.printf("Mesh contains %d vertices", active_mesh().no_vertices());
653
	return;
391 jab 654
}
655
 
596 jab 656
 
657
void console_simplify(const std::vector<std::string> & args)
412 jab 658
{
596 jab 659
    if(wantshelp(args)) 
660
    {
661
        theConsole.printf("usage: simplify <fraction> ");
662
        theConsole.printf("Performs Garland Heckbert (quadric based) mesh simplification.");
663
        theConsole.printf("The only argument is the fraction of vertices to keep.");
664
        return;
665
    }
666
    avo().save_old();
412 jab 667
 
596 jab 668
    float keep_fraction;
669
    if(args.size() == 0)
670
    {
671
        theConsole.print("you must specify fraction of vertices to keep");
672
        return;
673
    }
674
    istringstream a0(args[0]);
675
    a0 >> keep_fraction;
412 jab 676
 
596 jab 677
    Vec3d p0, p7;
678
    bbox(active_mesh(), p0, p7);
679
    Vec3d d = p7-p0;
680
    float s = 1.0/d.max_coord();
681
    Vec3d pcentre = (p7+p0)/2.0;
682
    for(VertexIDIterator vi = active_mesh().vertices_begin(); vi != active_mesh().vertices_end(); ++vi){
683
        active_mesh().pos(*vi) = (active_mesh().pos(*vi) - pcentre) * s;
684
    }
685
    cout << "Timing the Garland Heckbert (quadric based) mesh simplication..." << endl;
686
    Timer timer;
687
    timer.start();
688
 
689
    //simplify
690
    quadric_simplify(active_mesh(),keep_fraction,0.0001f,true);
691
 
692
    cout << "Simplification complete, process time: " << timer.get_secs() << " seconds" << endl;
693
 
694
    //clean up the mesh, a lot of edges were just collapsed 
695
    active_mesh().cleanup();
696
 
697
    for(VertexIDIterator vi = active_mesh().vertices_begin(); vi != active_mesh().vertices_end(); ++vi)
698
        active_mesh().pos(*vi) = active_mesh().pos(*vi)*d.max_coord() + pcentre;
699
    return;
412 jab 700
}
701
 
596 jab 702
void console_vertex_noise(const std::vector<std::string> & args)
391 jab 703
{
596 jab 704
    if(wantshelp(args)) 
705
    {
706
        theConsole.printf("usage: noise.perturb_vertices <amplitude>");
707
        theConsole.printf("adds a random vector to each vertex. A random vector in the unit cube is generated and");
708
        theConsole.printf("to ensure an isotropic distribution, vectors outside the unit ball are discarded.");
709
        theConsole.printf("The vector is multiplied by the average edge length and then by the amplitude specified.");
710
        theConsole.printf("If no amplitude is specified, the default (0.5) is used.");
711
        return;
712
    }
713
    avo().save_old();
391 jab 714
 
596 jab 715
    float avg_length = average_edge_length(active_mesh());
716
 
717
    float noise_amplitude = 0.5f;
718
    if(args.size() > 0) {
719
        istringstream a0(args[0]);
720
        a0 >> noise_amplitude;
721
    }
722
 
723
    gel_srand(0);
724
    for(VertexIDIterator vi = active_mesh().vertices_begin(); vi != active_mesh().vertices_end(); ++vi){
725
        Vec3d v;
726
        do{
727
            v = Vec3d(gel_rand(),gel_rand(),gel_rand());
728
            v /= (float)(GEL_RAND_MAX);
729
        } 
730
        while(sqr_length(v) > 1.0);
731
 
732
        v -= Vec3d(0.5);
733
        v *= 2.0;
734
        v *= noise_amplitude;
735
        v *= avg_length;
736
        active_mesh().pos(*vi) += v;
737
    }		
738
    return;
391 jab 739
}
740
 
596 jab 741
void console_perpendicular_vertex_noise(const std::vector<std::string> & args)
387 jab 742
{
596 jab 743
    if(wantshelp(args)) {
744
        theConsole.printf("usage: noise.perturb_vertices_perpendicular <amplitude>");
745
        theConsole.printf("adds the normal times a random scalar times amplitude times");
746
        theConsole.printf("times average edge length to the vertex. (default amplitude=0.5)");
747
        return;
748
    }
749
    avo().save_old();
412 jab 750
 
596 jab 751
    float avg_length = average_edge_length(active_mesh());
752
 
753
    float noise_amplitude = 0.5;
754
    if(args.size() > 0) 
755
    {
756
        istringstream a0(args[0]);
757
        a0 >> noise_amplitude;
758
    }
759
 
760
    VertexAttributeVector<Vec3d> normals(active_mesh().allocated_vertices());
761
    for(VertexIDIterator vi = active_mesh().vertices_begin(); vi != active_mesh().vertices_end(); ++vi)
762
        normals[*vi] = normal(active_mesh(), *vi);
763
 
764
    gel_srand(0);
765
    for(VertexIDIterator vi = active_mesh().vertices_begin(); vi != active_mesh().vertices_end(); ++vi)
766
    {
767
        float rval = 0.5-gel_rand() / float(GEL_RAND_MAX);
768
        active_mesh().pos(*vi) += normals[*vi]*rval*noise_amplitude*avg_length*2.0;
769
    }
770
    return;
387 jab 771
}
772
 
596 jab 773
void console_noisy_flips(const std::vector<std::string> & args)
412 jab 774
{
596 jab 775
    if(wantshelp(args)){
776
        theConsole.printf("usage:  noise.perturb_topology <iter>");
777
        theConsole.printf("Perform random flips. iter (default=1) is the number of iterations.");
778
        theConsole.printf("mostly for making nasty synthetic test cases.");
779
        return;
780
    }
781
    avo().save_old();
782
 
783
    int iter = 1;
784
    if(args.size() > 0){
785
        istringstream a0(args[0]);
786
        a0 >> iter;
787
    }
788
 
789
    randomize_mesh(active_mesh(),  iter);
790
    return;
412 jab 791
}
792
 
596 jab 793
void console_laplacian_smooth(const std::vector<std::string> & args)
434 jab 794
{
596 jab 795
    if(wantshelp(args)) {
796
        theConsole.printf("usage:  smooth.laplacian <weight> <iter>");
797
        theConsole.printf("Perform Laplacian smoothing. weight is the scaling factor for the Laplacian.");
798
        theConsole.printf("default weight = 1.0. Default number of iterations = 1");
799
        return;
800
    }
801
    avo().save_old();
802
 
803
    float t=1.0;
804
    if(args.size() > 0){
805
        istringstream a0(args[0]);
806
        a0 >> t;
807
    }
808
    int iter = 1;
809
    if(args.size()>1){
810
        istringstream a0(args[1]);
811
        a0 >> iter;
812
    }
813
    /// Simple laplacian smoothing with an optional weight.
814
    for(int i=0;i<iter;++i) 
815
        laplacian_smooth(active_mesh(), t);
816
    return;
434 jab 817
}
412 jab 818
 
434 jab 819
 
596 jab 820
void console_mean_curvature_smooth(const std::vector<std::string> & args){
821
    if(wantshelp(args)) {
822
        theConsole.printf("usage:  smooth.mean_curvature <weight> <iter>");
823
        theConsole.printf("Perform mean curvature smoothing. weight is the scaling factor for the");
824
        theConsole.printf("mean curvature vector which has been normalized by dividing by edge lengths");
825
        theConsole.printf("this allows for larger steps as suggested by Desbrun et al.");
826
        theConsole.printf("default weight = 1.0. Default number of iterations = 1");
827
        return;
828
    }
829
    avo().save_old();
434 jab 830
 
596 jab 831
    double t=1.0;
832
    if(args.size() > 0){
833
        istringstream a0(args[0]);
834
        a0 >> t;
835
    }
836
    int iter=1;
837
    if(args.size() > 1){
838
        istringstream a0(args[1]);
839
        a0 >> iter;
840
    }	
841
    VertexAttributeVector<Vec3d> new_pos(active_mesh().allocated_vertices());
842
    for(int j = 0; j < iter; ++j){
843
        for(VertexIDIterator v = active_mesh().vertices_begin(); v != active_mesh().vertices_end(); ++v) {
844
            Vec3d m;
845
            double w_sum;
846
            unnormalized_mean_curvature_normal(active_mesh(), *v, m, w_sum);
847
            new_pos[*v] = Vec3d(active_mesh().pos(*v))  + (t * m/w_sum);
848
        }
849
        for(VertexIDIterator v = active_mesh().vertices_begin(); v != active_mesh().vertices_end(); ++v)
850
            active_mesh().pos(*v) = new_pos[*v];
851
    }
852
    return;
434 jab 853
}
854
 
596 jab 855
void console_taubin_smooth(const std::vector<std::string> & args)
387 jab 856
{
596 jab 857
    if(wantshelp(args)){
858
        theConsole.printf("usage:  smooth.taubin <iter>");
859
        theConsole.printf("Perform Taubin smoothing. iter (default=1) is the number of iterations.");
860
        return;
861
    }
862
    avo().save_old();
387 jab 863
 
596 jab 864
    int iter = 1;
865
    if(args.size() > 0){
866
        istringstream a0(args[0]);
867
        a0 >> iter;
868
    }
869
    /// Taubin smoothing is similar to laplacian smoothing but reduces shrinkage
870
    taubin_smooth(active_mesh(),  iter);
871
 
872
    return;
387 jab 873
}
874
 
596 jab 875
void console_fvm_smooth(const std::vector<std::string> & args)
387 jab 876
{	
596 jab 877
    if(wantshelp(args)){
878
        theConsole.printf("usage: smooth.fuzzy_vector_median <iter>");
879
        theConsole.printf("Smooth normals using fuzzy vector median smoothing. iter (default=1) is the number of iterations");
880
        theConsole.printf("This function does a very good job of preserving sharp edges.");
881
        return;
882
    }
883
    avo().save_old();
391 jab 884
 
596 jab 885
    int iter=1;
886
    if(args.size() > 0){
887
        istringstream a0(args[0]);
888
        a0 >> iter;
889
    }
890
    // Fuzzy vector median smoothing is effective when it comes to preserving sharp edges. 
891
    fvm_smooth(active_mesh(),  iter);
892
 
893
    return;
387 jab 894
}
895
 
596 jab 896
void console_triangulate(const std::vector<std::string> & args)
388 jab 897
{	
596 jab 898
    if(wantshelp(args)) {
899
        theConsole.printf("usage:  triangulate");
900
        theConsole.printf("This function triangulates all non triangular faces of the mesh.");
901
        theConsole.printf("you may want to call it after hole closing. For a polygon it simply connects");
902
        theConsole.printf("the two closest vertices in a recursive manner until only triangles remain");
903
        return;
904
    }
905
    avo().save_old();
906
 
907
    shortest_edge_triangulate(active_mesh());
908
    active_mesh().cleanup();
909
	valid(active_mesh());
910
    return;
388 jab 911
}
912
 
600 jab 913
void console_remove_faces(const std::vector<std::string> & args)
914
{
915
    avo().save_old();
916
 
917
    gel_srand(0);
388 jab 918
 
600 jab 919
//    for (FaceIDIterator f= active_mesh().faces_begin(); f != active_mesh().faces_end(); ++f) {
920
//        if(gel_rand() < 0.5 * GEL_RAND_MAX)
921
//        {
922
//            active_mesh().remove_face(*f);
923
//        }
924
//    }
925
 
926
//    for (VertexIDIterator v= active_mesh().vertices_begin(); v != active_mesh().vertices_end(); ++v) {
927
//        if(gel_rand() < 0.005 * GEL_RAND_MAX)
928
//        {
929
//            active_mesh().remove_vertex(*v);
930
//        }
931
//    }
932
    for (HalfEdgeIDIterator h= active_mesh().halfedges_begin(); h != active_mesh().halfedges_end(); ++h) {
933
        if(gel_rand() < 0.005 * GEL_RAND_MAX)
934
        {
935
            active_mesh().remove_edge(*h);
936
        }
937
    }
938
 
939
    active_mesh().cleanup();
940
    valid(active_mesh());
941
 
942
    return;
943
}
944
 
945
 
596 jab 946
void console_remove_caps(const std::vector<std::string> & args)
388 jab 947
{	
596 jab 948
    if(wantshelp(args)) {
949
        theConsole.printf("usage:  cleanup.remove_caps thresh");
950
        theConsole.printf("Remove caps (triangles with one very big angle). The thresh argument is the fraction of PI to");
951
        theConsole.printf("use as threshold for big angle. Default is 0.85. Caps are removed by flipping.");
952
        return;
953
    }
954
    avo().save_old();
399 jab 955
 
596 jab 956
    float t = 0.85f;
957
    if(args.size() > 0){
958
        istringstream a0(args[0]);
959
        a0 >> t;
960
    }
961
    remove_caps(active_mesh(), static_cast<float>(M_PI) *t);
962
    active_mesh().cleanup();
963
 
964
    return;
388 jab 965
}
966
 
596 jab 967
void console_remove_needles(const std::vector<std::string> & args)
388 jab 968
{	
596 jab 969
    if(wantshelp(args)){
970
        theConsole.printf("usage: cleanup.remove_needles <thresh>");
971
        theConsole.printf("Removes very short edges by collapse. thresh is multiplied by the average edge length");
972
        theConsole.printf("to get the length shorter than which we collapse. Default = 0.1");
973
        return;
974
    }
975
    avo().save_old();
976
 
977
    float thresh = 0.1f;
978
    if(args.size() > 0){
979
        istringstream a0(args[0]);
980
        a0 >> thresh;
981
    }
982
    float avg_length = average_edge_length(active_mesh());
983
    remove_needles(active_mesh(), thresh * avg_length);
984
    active_mesh().cleanup();
985
 
986
    return;
388 jab 987
}
988
 
596 jab 989
void console_undo(const std::vector<std::string> & args)
990
{	
991
    if(wantshelp(args)) {
992
        theConsole.printf("usage:  undo");
993
        theConsole.printf("This function undoes one operation. Repeated undo does nothing");
994
        return;
995
    }
996
    avo().restore_old();
997
    return;
998
}
999
 
1000
 
391 jab 1001
void reshape(int W, int H)
1002
{
596 jab 1003
    active_view_control().reshape(W,H);
391 jab 1004
}
1005
 
596 jab 1006
Console::variable<string> display_render_mode("normal");
1007
Console::variable<int> display_smooth_shading;
1008
Console::variable<float> display_gamma(2.2);
1009
 
1010
void display()
386 jab 1011
{
596 jab 1012
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
386 jab 1013
 
596 jab 1014
 
1015
    glPushMatrix();
1016
 
1017
    avo().display(display_render_mode, theConsole, display_smooth_shading, display_gamma);
386 jab 1018
 
596 jab 1019
    glPopMatrix();
386 jab 1020
 
596 jab 1021
    if(console_visible)
1022
    {
1023
        glUseProgram(0);
1024
        theConsole.display();
1025
	}
1026
 
1027
    glutSwapBuffers();
386 jab 1028
}
1029
 
1030
void animate() 
1031
{	
596 jab 1032
    //usleep( (int)1e4 );
1033
    active_view_control().try_spin();
1034
    glutPostRedisplay();
386 jab 1035
}
1036
 
1037
 
1038
void mouse(int button, int state, int x, int y) 
1039
{
596 jab 1040
    Vec2i pos(x,y);
1041
    if (state==GLUT_DOWN) 
1042
    {
600 jab 1043
        if (button==GLUT_LEFT_BUTTON && glutGetModifiers() == 0)
596 jab 1044
            active_view_control().grab_ball(ROTATE_ACTION,pos);
600 jab 1045
        else if (button==GLUT_MIDDLE_BUTTON || glutGetModifiers() == GLUT_ACTIVE_CTRL) 
596 jab 1046
            active_view_control().grab_ball(ZOOM_ACTION,pos);
600 jab 1047
        else if (button==GLUT_RIGHT_BUTTON || glutGetModifiers() == GLUT_ACTIVE_ALT)
596 jab 1048
            active_view_control().grab_ball(PAN_ACTION,pos);
1049
    }
1050
    else if (state==GLUT_UP)
1051
        active_view_control().release_ball();
386 jab 1052
}
1053
 
1054
void motion(int x, int y) {
596 jab 1055
    Vec2i pos(x,y);
1056
    active_view_control().roll_ball(Vec2i(x,y));
386 jab 1057
}
1058
 
596 jab 1059
 
386 jab 1060
void keyboard_spec(int key, int x, int y)
1061
{
596 jab 1062
    if (console_visible)
1063
        theConsole.special(key);
1064
    glutPostRedisplay();
386 jab 1065
}
1066
 
1067
 
1068
void keyboard(unsigned char key, int x, int y) 
596 jab 1069
{
1070
    //toggle console with ESC
1071
    if (key == 27)
1072
    {
1073
        console_visible = !console_visible;
1074
        glutPostRedisplay();
1075
        return;
1076
    }
1077
 
1078
    if (console_visible)
1079
    {
1080
        theConsole.keyboard(key);
1081
        if(key == 13)
1082
        {
1083
            avo().post_create_display_list();
1084
            glutPostRedisplay();
1085
        }
1086
        return;
1087
    }
1088
    else {		
391 jab 1089
 
596 jab 1090
        switch(key) {
386 jab 1091
			case 'q': exit(0);
1092
			case '\033':
596 jab 1093
                console_visible = false;
386 jab 1094
				break;
391 jab 1095
			case '1':
1096
			case '2':
1097
			case '3':
1098
			case '4':
1099
			case '5':
1100
			case '6':
1101
			case '7':
1102
			case '8':
1103
			case '9':
1104
				active = key - '1'; break;
596 jab 1105
			case 'f': display_smooth_shading = !display_smooth_shading; break;
386 jab 1106
			case 'w':
399 jab 1107
				display_render_mode = "wire"; break;
1108
			case 'n':
1109
				display_render_mode = "normal"; break;
1110
			case 'i':
1111
				display_render_mode = "isophotes"; break;
1112
			case 'r':
1113
				display_render_mode = "reflection"; break;
1114
			case 'h':
1115
				display_render_mode = "harmonics"; break;
403 jab 1116
			case 't':
1117
				display_render_mode = "toon"; break;
401 jab 1118
			case 'g':
1119
				display_render_mode = "glazed"; break;
406 jab 1120
			case 'a':
1121
				display_render_mode = "ambient_occlusion"; break;
1122
			case 'c':
1123
				display_render_mode = "copper"; break;
403 jab 1124
			case 'C':
1125
				display_render_mode = "curvature_lines"; break;
1126
			case 'M':
1127
				display_render_mode = "mean_curvature"; break;
1128
			case 'G':
1129
				display_render_mode = "gaussian_curvature"; break;
596 jab 1130
        }
391 jab 1131
 
596 jab 1132
        if(string(display_render_mode).substr(0,3) == "har")
1133
            avo().harmonics_parse_key(key);
391 jab 1134
 
596 jab 1135
        if(key != '\033') avo().post_create_display_list();
1136
    }
1137
 
1138
    glutPostRedisplay();
386 jab 1139
}
1140
 
1141
void init_glut(int argc, char** argv)
596 jab 1142
{  
1143
    glutInitDisplayMode(GLUT_RGBA|GLUT_DOUBLE|GLUT_DEPTH|GLUT_ALPHA);
1144
    glutInitWindowSize(WINX, WINY);
1145
    glutInit(&argc, argv);
1146
    glutCreateWindow("MeshEdit");
1147
    glutDisplayFunc(display);
1148
    glutKeyboardFunc(keyboard);
1149
    glutSpecialFunc(keyboard_spec);
1150
    glutReshapeFunc(reshape);
1151
    glutMouseFunc(mouse);
1152
    glutMotionFunc(motion);
1153
    glutIdleFunc(animate);
386 jab 1154
}
1155
void init_gl()
1156
{
596 jab 1157
    glewInit();
1158
    glEnable(GL_LIGHTING);
1159
    glEnable(GL_LIGHT0);
1160
    glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, 1);
399 jab 1161
 
596 jab 1162
    // Set the value of a uniform
1163
    //glUniform2f(glGetUniformLocation(prog_P0,"WIN_SCALE"), win_size_x/2.0, win_size_y/2.0);
386 jab 1164
 
596 jab 1165
    glMatrixMode(GL_MODELVIEW);
1166
    glLoadIdentity();
1167
    glClearColor(1,1,1, 0.f);
1168
    glColor4f(1.0f, 1.0f, 1.0f, 0.f);
1169
    float material[4] = {1,1,1,1};
1170
    glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, material);
1171
    glEnable(GL_DEPTH_TEST);
386 jab 1172
 
596 jab 1173
    theConsole.reg_cmdN("harmonics.reset_shape", console_reset_shape, "");
1174
    theConsole.reg_cmdN("harmonics.analyze", console_analyze, "");
1175
    theConsole.reg_cmdN("harmonics.partial_reconstruct", console_partial_reconstruct,"");
1176
    theConsole.reg_cmdN("simplify", console_simplify,"");
1177
    theConsole.reg_cmdN("smooth.mean_curvature", console_mean_curvature_smooth,"");
1178
    theConsole.reg_cmdN("smooth.laplacian", console_laplacian_smooth,"");
1179
    theConsole.reg_cmdN("smooth.taubin", console_taubin_smooth,"");
1180
    theConsole.reg_cmdN("smooth.fuzzy_vector_median", console_fvm_smooth,"");
391 jab 1181
 
596 jab 1182
    theConsole.reg_cmdN("optimize.valency", console_optimize_valency,"");
1183
    theConsole.reg_cmdN("optimize.minimize_dihedral_angles", console_minimize_dihedral,"");
1184
    theConsole.reg_cmdN("optimize.minimize_curvature", console_minimize_curvature,"");
1185
    theConsole.reg_cmdN("optimize.maximize_min_angle", console_maximize_min_angle,"");
1186
    theConsole.reg_cmdN("cleanup.close_holes", console_close_holes,"");
1187
    theConsole.reg_cmdN("load_mesh", console_reload,"");
1188
    theConsole.reg_cmdN("add_mesh", console_add_mesh,"");
391 jab 1189
 
596 jab 1190
    theConsole.reg_cmdN("cleanup.remove_caps", console_remove_caps,"");
1191
    theConsole.reg_cmdN("cleanup.remove_needles", console_remove_needles,"");
1192
    theConsole.reg_cmdN("triangulate", console_triangulate,"");
1193
    theConsole.reg_cmdN("refine.split_edges", console_refine_edges,"");
1194
    theConsole.reg_cmdN("refine.split_faces", console_refine_faces,"");
1195
    theConsole.reg_cmdN("refine.catmull_clark", console_cc_subdivide,"");
1196
    theConsole.reg_cmdN("refine.doo_sabin", console_doosabin_subdivide,"");
1197
    theConsole.reg_cmdN("save_mesh", console_save,"");
1198
    theConsole.reg_cmdN("noise.perturb_vertices", console_vertex_noise,"");
1199
    theConsole.reg_cmdN("noise.perturb_vertices_perpendicular", console_perpendicular_vertex_noise,"");
1200
    theConsole.reg_cmdN("noise.perturb_topology", console_noisy_flips,"");
1201
 
600 jab 1202
    theConsole.reg_cmdN("remove_faces", console_remove_faces,"");
1203
 
596 jab 1204
    theConsole.reg_cmdN("dual", console_dual,"");
1205
    theConsole.reg_cmdN("flatten", console_flatten,"");
399 jab 1206
 
596 jab 1207
    theConsole.reg_cmdN("align", console_align,"");
399 jab 1208
 
596 jab 1209
    theConsole.reg_cmdN("undo", console_undo,"");
387 jab 1210
 
596 jab 1211
	theConsole.reg_cmdN("validity", console_valid,"");
1212
	theConsole.reg_cmdN("info", console_info,"");
1213
 
1214
    theConsole.reg_cmdN("polarize", console_polarize ,"");
1215
 
1216
    active.reg(theConsole, "active_mesh", "The active mesh");
1217
    display_render_mode.reg(theConsole, "display.render_mode", "Display render mode");
1218
    display_smooth_shading.reg(theConsole, "display.smooth_shading", "1 for smooth shading 0 for flat");
1219
    display_gamma.reg(theConsole, "display.gamma", "The gamma setting for the display");
1220
 
386 jab 1221
}
1222
 
1223
int main(int argc, char** argv)
1224
{
596 jab 1225
    ArgExtracter ae(argc, argv);
391 jab 1226
 
596 jab 1227
    init_glut(argc, argv);
1228
    init_gl();
391 jab 1229
 
596 jab 1230
    theConsole.print("Welcome to MeshEdit");
1231
    theConsole.newline();
1232
 
1233
    Harmonics::init(theConsole);
391 jab 1234
 
596 jab 1235
    if(argc>1){		
1236
        vector<string> files;
1237
		ae.get_all_args(files);
1238
		for(int i=1;i<files.size();++i)
1239
			get_vis_obj(i-1).reload(files[i]);
1240
    }
1241
    glutMainLoop();
1242
    return 0;
386 jab 1243
}
1244
 
1245
 
596 jab 1246
 
1247
 
1248