This repository has been archived on 2021-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
scriptcraft/src/main/js/plugins/drone/test.js
2014-01-25 09:04:16 +00:00

24 lines
598 B
JavaScript

var Drone = require('./drone').Drone;
Drone.prototype.testHorizontalStrokeWidth = function(){
this.arc({
blockType: 42,
meta: 0,
radius: 8,
orientation: 'horizontal',
strokeWidth: 3,
quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true}
});
};
Drone.prototype.testVerticalStrokeWidth = function(){
this.arc({
blockType: 42,
meta: 0,
radius: 8,
orientation: 'vertical',
strokeWidth: 3,
quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true}
});
};