little mistake in chipmunk doc
Posted: Sat May 31, 2008 3:43 pm
Just to signal that this line in the .html is false :
cpShape *cpCircleShapeNew(cpBody *body, cpVect offset, cpFloat radius)
Must be :
cpShape *cpCircleShapeNew(cpBody *body, cpFloat radius, cpVect offset)

cpShape *cpCircleShapeNew(cpBody *body, cpVect offset, cpFloat radius)
Must be :
cpShape *cpCircleShapeNew(cpBody *body, cpFloat radius, cpVect offset)
