blender/extern/bullet/BulletDynamics/CollisionDispatch/UnionFind.h
Erwin Coumans feb4f51103 Added Bullet library.
Only windows projectfiles for now.
Will ask Hans to get unix makefiles done.
2005-07-16 09:58:01 +00:00

22 lines
315 B
C++

#ifndef UNION_FIND_H
#define UNION_FIND_H
///UnionFind calculates connected subsets
class UnionFind
{
private:
int *id, *sz;
int m_N;
public:
int find(int x);
UnionFind(int N);
void reset();
int find(int p, int q);
void unite(int p, int q);
};
#endif //UNION_FIND_H