0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-11-23 09:26:51 -05:00
liabru-matter-js/examples/stress.js

21 lines
527 B
JavaScript
Raw Normal View History

2015-08-25 14:12:52 -04:00
(function() {
var World = Matter.World,
Bodies = Matter.Bodies,
Composites = Matter.Composites;
Example.stress = function(demo) {
var engine = demo.engine,
world = engine.world;
2015-08-25 14:31:44 -04:00
var stack = Composites.stack(90, 50, 18, 15, 0, 0, function(x, y) {
2015-08-25 14:12:52 -04:00
return Bodies.rectangle(x, y, 35, 35);
});
World.add(world, stack);
var renderOptions = demo.render.options;
2015-08-25 14:12:52 -04:00
renderOptions.showAngleIndicator = false;
};
})();