cant move and rotate
In actionscript 3.
I have an image which rotates an amount _angle.
Then I want to move that image in the _angle direction.
The angles below are the same but it moves in some odd direction.
I have already tried -_angle and also 360-_angle.
If I rotate an image 45 deg clockwise then i want it it move in the 45 clockwise direction
img1.rotation=_angle;
_y-=(speedfire*Math.sin(_angle*(Math.PI/180)));
_x+=(speedfire*Math.cos(_angle*(Math.PI/180)));
BTW the image is moving from top to down the screen down like a missile.