Changeset 13041 for OpenSceneGraph/trunk/src/osgPlugins/dxf/dxfSection.cpp
- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/dxf/dxfSection.cpp
r5798 r13041 1 1 /* dxfReader for OpenSceneGraph Copyright (C) 2005 by GraphArchitecture ( grapharchitecture.com ) 2 2 * Programmed by Paul de Repentigny <pdr@grapharchitecture.com> 3 * 3 * 4 4 * OpenSceneGraph is (C) 2004 Robert Osfield 5 * 5 * 6 6 * This library is provided as-is, without support of any kind. 7 7 * 8 8 * Read DXF docs or OSG docs for any related questions. 9 * 9 * 10 10 * You may contact the author if you have suggestions/corrections/enhancements. 11 11 */ … … 28 28 } 29 29 30 void dxfTables::assign(dxfFile* dxf, codeValue& cv) 30 void dxfTables::assign(dxfFile* dxf, codeValue& cv) 31 31 { 32 32 if (cv._groupCode == 0 && cv._string == "TABLE") { … … 59 59 } 60 60 61 void dxfEntities::assign(dxfFile* dxf, codeValue& cv) 61 void dxfEntities::assign(dxfFile* dxf, codeValue& cv) 62 62 { 63 63 if (cv._groupCode == 0) { … … 76 76 } 77 77 78 void 78 void 79 79 dxfEntities::drawScene(scene* sc) 80 80 { … … 83 83 (*itr)->drawScene(sc); 84 84 } 85 dxfBlock* 85 dxfBlock* 86 86 dxfBlocks::findBlock(std::string s) { return _blockNameList[s]; } 87 87
