mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
/**
|
|
* @provide pskl.tools.drawing.Circle
|
|
*
|
|
* @require pskl.utils
|
|
*/
|
|
(function() {
|
|
var ns = $.namespace('pskl.tools.drawing');
|
|
|
|
ns.Circle = function() {
|
|
ns.ShapeTool.call(this);
|
|
|
|
this.toolId = 'tool-circle';
|
|
this.helpText = 'Circle tool';
|
|
};
|
|
|
|
pskl.utils.inherit(ns.Circle, ns.ShapeTool);
|
|
|
|
ns.Circle.prototype.draw_ = function (col, row, color, targetFrame) {
|
|
var circlePoints = this.getCirclePixels_(this.startCol, this.startRow, col, row);
|
|
for (var i = 0 ; i < circlePoints.length ; i++) {
|
|
// Change model:
|
|
targetFrame.setPixel(circlePoints[i].col, circlePoints[i].row, color);
|
|
}
|
|
};
|
|
|
|
ns.Circle.prototype.getCirclePixels_ = function (x0, y0, x1, y1) {
|
|
var coords = pskl.PixelUtils.getOrderedRectangleCoordinates(x0, y0, x1, y1);
|
|
var xC = (coords.x0 + coords.x1) / 2;
|
|
var yC = (coords.y0 + coords.y1) / 2;
|
|
|
|
var rX = coords.x1 - xC;
|
|
var rY = coords.y1 - yC;
|
|
|
|
var pixels = [];
|
|
|
|
var x, y, angle;
|
|
for (x = coords.x0 ; x < coords.x1 ; x++) {
|
|
angle = Math.acos((x - xC) / rX);
|
|
y = Math.round(rY * Math.sin(angle) + yC);
|
|
pixels.push({'col': x, 'row': y});
|
|
pixels.push({'col': 2 * xC - x, 'row': 2 * yC - y});
|
|
}
|
|
|
|
for (y = coords.y0 ; y < coords.y1 ; y++) {
|
|
angle = Math.asin((y - yC) / rY);
|
|
x = Math.round(rX * Math.cos(angle) + xC);
|
|
pixels.push({'col': x, 'row': y});
|
|
pixels.push({'col': 2 * xC - x, 'row': 2 * yC - y});
|
|
}
|
|
|
|
return pixels;
|
|
};
|
|
})();
|