Changeset 10771 in orxonox.OLD for branches/presentation/src/lib/collision_detection
- Timestamp:
- Jun 27, 2007, 7:01:08 PM (18 years ago)
- Location:
- branches/presentation/src/lib/collision_detection
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/lib/collision_detection/aabb_tree_node.cc
r10698 r10771 882 882 883 883 /* DRAW SEPARATING PLANE */ 884 if( drawMode & DRAW_SEPARATING_PLANE || drawMode & DRAW_ALL)884 if( (drawMode & DRAW_SEPARATING_PLANE) || (drawMode & DRAW_ALL)) 885 885 { 886 886 if( !(drawMode & DRAW_SINGLE && depth != 0)) -
branches/presentation/src/lib/collision_detection/obb_tree_node.cc
r10618 r10771 782 782 783 783 /* DRAW POLYGONS */ 784 if( drawMode & DRAW_BV_POLYGON || drawMode & DRAW_ALL || drawMode & DRAW_BV_BLENDED)784 if(( drawMode & DRAW_BV_POLYGON) || (drawMode & DRAW_ALL) || (drawMode & DRAW_BV_BLENDED)) 785 785 { 786 786 if (top) … … 932 932 933 933 /* DRAW SEPARATING PLANE */ 934 if( drawMode & DRAW_SEPARATING_PLANE|| drawMode & DRAW_ALL)934 if( (drawMode & DRAW_SEPARATING_PLANE) || drawMode & DRAW_ALL) 935 935 { 936 936 if( !(drawMode & DRAW_SINGLE && depth != 0))
Note: See TracChangeset
for help on using the changeset viewer.