mirror of
https://github.com/liabru/matter-js.git
synced 2024-11-23 09:26:51 -05:00
18 lines
No EOL
428 B
JavaScript
18 lines
No EOL
428 B
JavaScript
(function() {
|
|
|
|
var World = Matter.World,
|
|
Bodies = Matter.Bodies,
|
|
Composites = Matter.Composites;
|
|
|
|
Example.circleStack = function(demo) {
|
|
var engine = demo.engine,
|
|
world = engine.world;
|
|
|
|
var stack = Composites.stack(100, 100, 10, 10, 20, 0, function(x, y) {
|
|
return Bodies.circle(x, y, 20);
|
|
});
|
|
|
|
World.add(world, stack);
|
|
};
|
|
|
|
})(); |