2013-09-28 23:10:12 +04:00
|
|
|
/**
|
2012-09-15 00:20:34 +04:00
|
|
|
* @provide pskl.drawingtools.Circle
|
|
|
|
*
|
|
|
|
* @require pskl.utils
|
|
|
|
*/
|
|
|
|
(function() {
|
2013-08-10 14:11:16 +04:00
|
|
|
var ns = $.namespace("pskl.drawingtools");
|
2012-09-15 00:20:34 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
ns.Circle = function() {
|
2014-04-03 00:21:32 +04:00
|
|
|
ns.ShapeTool.call(this);
|
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
this.toolId = "tool-circle";
|
2014-07-09 09:56:22 +04:00
|
|
|
|
2014-07-10 03:32:16 +04:00
|
|
|
this.shortHelpText = "Circle tool";
|
2014-07-09 09:56:22 +04:00
|
|
|
this.helpText = [
|
|
|
|
"<div class='tools-tooltip-container'>",
|
|
|
|
"Circle tool {{shortcut}}<br/>",
|
2014-07-10 03:32:16 +04:00
|
|
|
this.getModifierHelpText('shift', 'Keep 1 to 1 ratio'),
|
2014-07-09 09:56:22 +04:00
|
|
|
"</div>"
|
|
|
|
].join("");
|
2013-08-10 14:11:16 +04:00
|
|
|
};
|
2012-09-15 00:20:34 +04:00
|
|
|
|
2014-04-03 00:21:32 +04:00
|
|
|
pskl.utils.inherit(ns.Circle, ns.ShapeTool);
|
2012-09-15 01:43:49 +04:00
|
|
|
|
2014-04-03 00:21:32 +04:00
|
|
|
ns.Circle.prototype.draw_ = function (col, row, color, targetFrame) {
|
2013-08-10 14:11:16 +04:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
};
|
2012-09-15 01:43:49 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
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;
|
2013-09-29 01:52:51 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
var rX = coords.x1 - xC;
|
|
|
|
var rY = coords.y1 - yC;
|
2012-09-15 01:43:49 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
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});
|
|
|
|
}
|
2012-09-15 01:43:49 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
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;
|
|
|
|
};
|
2012-09-15 00:20:34 +04:00
|
|
|
})();
|