Home
last modified time | relevance | path

Searched refs:cpContactPointSet (Results 1 – 14 of 14) sorted by relevance

/dports/devel/ChipmunkPhysics/Chipmunk-7.0.1/include/chipmunk/
H A DcpArbiter.h81 struct cpContactPointSet { struct
99 CP_EXPORT cpContactPointSet cpArbiterGetContactPointSet(const cpArbiter *arb); argument
103 CP_EXPORT void cpArbiterSetContactPointSet(cpArbiter *arb, cpContactPointSet *set);
H A Dchipmunk.h116 typedef struct cpContactPointSet cpContactPointSet; typedef
225 typedef void (^cpSpaceShapeQueryBlock)(cpShape *shape, cpContactPointSet *points);
H A DcpShape.h95 CP_EXPORT cpContactPointSet cpShapesCollide(const cpShape *a, const cpShape *b);
H A DcpSpace.h216 typedef void (*cpSpaceShapeQueryFunc)(cpShape *shape, cpContactPointSet *points, void *data);
/dports/devel/ChipmunkPhysics/Chipmunk-7.0.1/objectivec/include/ObjectiveChipmunk/
H A DChipmunkShape.h163 cpContactPointSet _contactPoints;
166 - (id)initWithShape:(ChipmunkShape *)shape andPoints:(cpContactPointSet *)set;
169 @property(nonatomic, readonly) cpContactPointSet *contactPoints;
/dports/devel/ChipmunkPhysics/Chipmunk-7.0.1/src/
H A DcpArbiter.c99 cpContactPointSet
102 cpContactPointSet set; in cpArbiterGetContactPointSet()
123 cpArbiterSetContactPointSet(cpArbiter *arb, cpContactPointSet *set) in cpArbiterSetContactPointSet()
H A DcpShape.c259 cpContactPointSet
265 cpContactPointSet set; in cpShapesCollide()
H A DcpSpaceQuery.c224 cpContactPointSet set = cpShapesCollide(a, b); in ShapeQuery()
H A Dchipmunk.c310 static void ShapeQueryIteratorFunc(cpShape *shape, cpContactPointSet *points, cpSpaceShapeQueryBloc… in ShapeQueryIteratorFunc()
/dports/devel/ChipmunkPhysics/Chipmunk-7.0.1/demo/
H A DSticky.c51 cpContactPointSet contacts = cpArbiterGetContactPointSet(arb); in StickyPreSolve()
H A DSmooth.c_31 cpContactPointSet set = cpArbiterGetContactPointSet(arb);
/dports/devel/ChipmunkPhysics/Chipmunk-7.0.1/objectivec/src/
H A DChipmunkShape.m192 - (cpContactPointSet *)contactPoints {return &_contactPoints;}
194 - (id)initWithShape:(ChipmunkShape *)shape andPoints:(cpContactPointSet *)set
H A DChipmunkSpace.m400 //shapeQueryAll(cpShape *shape, cpContactPointSet *points, NSMutableArray *array)
410 cpSpaceShapeQuery_b(_space, shape.shape, ^(cpShape *shape, cpContactPointSet *points){
/dports/devel/ChipmunkPhysics/Chipmunk-7.0.1/xcode/ObjectiveChipmunkTests/
H A DSpaceTest.m184 cpSpaceShapeQuery_b(space.space, queryShape.shape, ^(cpShape *shape, cpContactPointSet *points){