Changeset 90

Show
Ignore:
Timestamp:
10/16/07 03:03:01 (1 year ago)
Author:
baxissimo
Message:

debug printfs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/OpenMeshD/OpenMesh/Core/IO/reader/OBJReader.d

    r84 r90  
    358358        while(_in && !feof(_in) && fgets(s.ptr, LINE_LEN, _in)) 
    359359        { 
     360            //dout.writef("read: ", s[0..strlen(s.ptr)]).flush; 
     361 
    360362            // comment 
    361363            if (s[0] == '#' || isspace(s[0]))  { 
     
    509511 
    510512                size_t n_faces = _bi.n_faces(); // 
     513                //dout.writefln("add face: %s", vhandles); 
    511514                FaceHandle fh = _bi.add_face(vhandles); 
    512515