Changeset 3314 for OpenSceneGraph/trunk/src/osgPlugins/obj/glm.cpp
- Timestamp:
- 08/24/04 10:43:53 (9 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/src/osgPlugins/obj/glm.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/obj/glm.cpp
r3284 r3314 19 19 #include <osg/Math> 20 20 21 #include <iostream> 21 22 22 23 /* defines */ … … 211 212 model->groups = group; 212 213 model->numgroups++; 214 215 std::cout<<"_glmAddGroup="<<name<<std::endl; 213 216 } 214 217 … … 608 611 609 612 while(fscanf(file, "%s", buf) != EOF) { 613 614 610 615 switch(buf[0]) { 611 616 case '#': /* comment */ … … 721 726 break; 722 727 } 728 729 std::cout<<"line="<<buf<<std::endl; 730 723 731 } 724 732 … … 851 859 char compositeName[128]; 852 860 createCompositeName(buf,compositeName); 853 854 861 group = _glmFindGroup(model, compositeName); 862 std::cout<<"compositeName="<<compositeName<<" group="<<group<<std::endl; 855 863 group->material = material; 856 864 firstGroup = false;
