bullet3/Demos/ConcaveRaycastDemo
ejcoumans 39ecc2ab7e error C2374: 'i' : redefinition; multiple initialization
make MSVC 6.0 build again.
This code breaks:
for (int i=0;....
for (int i=0;....
use
int i;
for (i=0;...
for (i=0;...
instead ;-)
2008-02-05 05:55:25 +00:00
..
ConcaveRaycastDemo.cpp error C2374: 'i' : redefinition; multiple initialization 2008-02-05 05:55:25 +00:00
ConcaveRaycastDemo.h Add support for batch raycast to ConcaveRaycastDemo. Disabled by default. 2008-01-14 23:50:10 +00:00
main.cpp Added ConcaveRaycastDemo, thanks to John Rowe (JMC) for the contribution! 2007-11-30 20:38:47 +00:00