Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 27, 2005, 1:27:56 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: now painting the BV's again…. no error due to my change in the static model…. puh :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/collision_detection/cd_engine.cc

    r6222 r6316  
    195195
    196196
     197void CDEngine::drawBV(const std::list<WorldEntity*>& drawList ) const
     198{
     199  std::list<WorldEntity*>::const_iterator entity;
     200  for (entity = drawList.begin(); entity != drawList.end(); entity++)
     201    if ((*entity)->isVisible())
     202      (*entity)->drawBVTree(3, 226);
     203}
     204
    197205/**
    198206 * this draws the debug spawn tree
Note: See TracChangeset for help on using the changeset viewer.