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/javascript/drone/test.js
2013-02-10 17:51:27 +00:00

22 lines
559 B
JavaScript

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}
});
};