Integerize the angle when dragging rotation

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@482 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Jeff Schiller 2009-08-27 01:05:59 +00:00
parent 143680e3ee
commit a46510a015
1 changed files with 1 additions and 1 deletions

View File

@ -1684,7 +1684,7 @@ function SvgCanvas(c)
break; break;
case "rotate": case "rotate":
var box = canvas.getBBox(selected),cx = box.x + box.width/2, cy = box.y + box.height/2; var box = canvas.getBBox(selected),cx = box.x + box.width/2, cy = box.y + box.height/2;
canvas.setRotationAngle(((Math.atan2(cy-y,cx-x) * (180/Math.PI))-90) % 360); canvas.setRotationAngle(parseInt(((Math.atan2(cy-y,cx-x) * (180/Math.PI))-90) % 360));
break; break;
default: default:
break; break;