You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#define RCSGRAPH_TRAVERSE_BODIES(graph) for (RcsBody* BODY = (graph)->root; BODY; BODY = RcsBody_depthFirstTraversalGetNext(BODY))
#define RCSBODY_TRAVERSE_BODIES(body) for (RcsBody* BODY = (body), *LAST = RcsBody_depthFirstTraversalGetNext(RcsBody_getLastChild(BODY)); BODY && BODY != LAST; BODY = RcsBody_depthFirstTraversalGetNext(BODY))
#define RCSBODY_TRAVERSE_CHILD_BODIES(body) for (RcsBody* BODY = RcsBody_depthFirstTraversalGetNext(body), *LAST = RcsBody_depthFirstTraversalGetNext(RcsBody_getLastChild(body)); BODY && BODY != LAST; BODY = RcsBody_depthFirstTraversalGetNext(BODY))