mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
14 lines
320 B
Plaintext
14 lines
320 B
Plaintext
function point_rotate(px, py, ox, oy, a) {
|
|
INLINE
|
|
|
|
a = angle_difference(a, 0);
|
|
if(a == 0) return [ px, py ];
|
|
if(a == 180) return [ ox + (ox - px), oy + (oy - py) ];
|
|
|
|
var cx = px - ox;
|
|
var cy = py - oy;
|
|
var d = -degtorad(a);
|
|
|
|
return [ ox + cx * cos(d) - cy * sin(d),
|
|
oy + cx * sin(d) + cy * cos(d) ];
|
|
} |