Changeset 13041 for OpenSceneGraph/trunk/src/osgPlugins/dxf/dxfDataTypes.h
- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/dxf/dxfDataTypes.h
r4928 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 */ … … 33 33 inline static int typeForCode(int gc) { 34 34 if ( between(gc, 0, 9) || 35 gc == 100 || gc == 102 || 35 gc == 100 || gc == 102 || 36 36 between(gc, 300, 309) || 37 37 between(gc, 410, 419) || 38 38 between(gc, 430, 439) || 39 39 between(gc, 470, 479) || 40 gc == 999 || 40 gc == 999 || 41 41 between(gc, 1000, 1009) 42 42 )
