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