whalesong/image rotate accepts any real num

This commit is contained in:
Stephen Chang 2015-06-04 13:49:20 -04:00
parent 0b6ab32f8d
commit 4eb732101d
3 changed files with 40 additions and 19 deletions

View File

@ -89,8 +89,6 @@ var less = function(lhs, rhs) {
return (rhs - lhs) > 0.00001; return (rhs - lhs) > 0.00001;
} }
var checkString = plt.baselib.check.checkString; var checkString = plt.baselib.check.checkString;
var checkStringOrFalse = plt.baselib.check.makeCheckArgumentType( var checkStringOrFalse = plt.baselib.check.makeCheckArgumentType(
function(x) { return plt.baselib.strings.isString(x) || x === false; }, function(x) { return plt.baselib.strings.isString(x) || x === false; },
@ -782,28 +780,26 @@ EXPORTS['place-image/align'] =
} }
}); });
//////////////////////////////////////////////////////////////////////
// rotate: angle image -> image
// Rotates image by angle degrees in a counter-clockwise direction.
EXPORTS['rotate'] = EXPORTS['rotate'] =
makePrimitiveProcedure( makePrimitiveProcedure(
'rotate', 'rotate',
2, 2,
function(MACHINE) { function(MACHINE) {
var angle = checkRotateAngle(MACHINE, "rotate", 0); var angle = checkRotateAngle(MACHINE, "rotate", 0);
var angle360 = angle % 360;
var img = checkImage(MACHINE, "rotate", 1); var img = checkImage(MACHINE, "rotate", 1);
if (jsnums.lessThan(angle, 0)) { // convert to clockwise rotation for makeRotateImage
return makeRotateImage(jsnums.toFixnum(-(360 + angle)), img); if (angle360 < 0) {
return makeRotateImage(jsnums.toFixnum(-(360 + angle360)), img);
} else { } else {
return makeRotateImage(jsnums.toFixnum(-angle), img); return makeRotateImage(jsnums.toFixnum(-angle360), img);
} }
}); });
EXPORTS['scale'] = EXPORTS['scale'] =
makePrimitiveProcedure( makePrimitiveProcedure(
'scale', 'scale',

View File

@ -28,9 +28,7 @@ var isAngle = function(x) {
}; };
// differentiate between rotation angle and other angles // differentiate between rotation angle and other angles
var isRotateAngle = function(x) { var isRotateAngle = function(x) {
return plt.baselib.numbers.isReal(x) && return plt.baselib.numbers.isReal(x);
jsnums.greaterThan(x, -360) &&
jsnums.lessThan(x, 360);
}; };
@ -672,8 +670,9 @@ OverlayImage.prototype.equals = function(other, aUnionFind) {
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
// rotate: angle image -> image // RotateImage: angle image -> image
// Rotates image by angle degrees in a counter-clockwise direction. // Rotates image by angle degrees in a *clockwise* direction.
// NOTE: the angle direction differs from the rotate function.
// TODO: special case for ellipse? // TODO: special case for ellipse?
var RotateImage = function(angle, img) { var RotateImage = function(angle, img) {
BaseImage.call(this); BaseImage.call(this);

View File

@ -601,8 +601,34 @@ Australia2
(flip-horizontal (flip-horizontal
(rotate 30 (square 50 "solid" "blue")))) (rotate 30 (square 50 "solid" "blue"))))
"A solid blue triangle, rotated 30 degrees. Should be flush left" (define blue-tri (triangle 100 "solid" "blue"))
(rotate 30 (triangle 100 "solid" "blue")) "A solid blue triangle, rotated 0 degrees. Should be pointing up."
(rotate 0 blue-tri)
"A solid blue triangle, rotated 30 degrees ccw. Should be flush left"
(rotate 30 blue-tri)
"A solid blue triangle, rotated 90 degrees ccw. Should be pointing left."
(rotate 90 blue-tri)
"A solid blue triangle, rotated 180 degrees ccw. Should be pointing down."
(rotate 180 blue-tri)
"A solid blue triangle, rotated 270 degrees ccw. Should be pointing right."
(rotate 270 blue-tri)
"A solid blue triangle, rotated 630 degrees ccw. Should be pointing right."
(rotate 630 blue-tri)
"A solid blue triangle, rotated 360 degrees ccw. Should be pointing up."
(rotate 360 blue-tri)
"A solid blue triangle, rotated 360.1 degrees ccw. Should be approximately pointing up."
(rotate 360.1 blue-tri)
"A solid blue triangle, rotated 720.5 degrees ccw. Should be approximately pointing up."
(rotate 720.5 blue-tri)
"A solid blue triangle, rotated 1.5 degrees cw. Should be approximately pointing up."
(rotate -1.5 blue-tri)
"A solid blue triangle, rotated -90 degrees ccw (90 cw). Should be pointing right."
(rotate -90 blue-tri)
"A solid blue triangle, rotated -450 degrees ccw (450 cw). Should be pointing right."
(rotate -450 blue-tri)
"A solid blue triangle, rotated -810 degrees ccw (810 cw). Should be pointing right."
(rotate -810 blue-tri)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; SCALE & SCALE/XY ;; SCALE & SCALE/XY