comparison trunk/chipmunkd/cpSpaceComponent.d @ 15:df4ebc8add66

rename/refactoring
author Extrawurst
date Sat, 04 Dec 2010 00:51:29 +0100
parents 7ebbd4d05553
children 4ceef5833c8c
comparison
equal deleted inserted replaced
14:d88862c82f06 15:df4ebc8add66
2 // written in the D programming language 2 // written in the D programming language
3 3
4 module chipmunkd.cpSpaceComponent; 4 module chipmunkd.cpSpaceComponent;
5 5
6 import chipmunkd.chipmunk; 6 import chipmunkd.chipmunk;
7 import chipmunkd.chipmunk_types_h;
8 import chipmunkd.cpVect,chipmunkd.cpVect_h;
9 import chipmunkd.cpBody;
10 7
11 // Chipmunk uses a data structure called a disjoint set forest. 8 // Chipmunk uses a data structure called a disjoint set forest.
12 // My attempts to find a way to splice circularly linked lists in 9 // My attempts to find a way to splice circularly linked lists in
13 // constant time failed, and so I found this neat data structure instead. 10 // constant time failed, and so I found this neat data structure instead.
14 11