File size: 101 Bytes
bc20498 |
1 2 3 4 |
export default function(x, y) {
return [(y = +y) * Math.cos(x -= Math.PI / 2), y * Math.sin(x)];
}
|
bc20498 |
1 2 3 4 |
export default function(x, y) {
return [(y = +y) * Math.cos(x -= Math.PI / 2), y * Math.sin(x)];
}
|