I need to rotate this image around the center of the circle with known coordinates  ``` [x,y,angle] [398, 290, -2.4995608216061647] ``` ```ruby img.rotate(angle * 180 / Math::PI, idx: x, idy: y, odx: x, ody: y) ``` but it looks wrong, the position has shifted  how do I do it without shifting the resulting circle? Also the https://www.libvips.org/API/current/libvips-resample.html#vips-rotate doc has the `ody` arg twice. ``` vips-8.11.3-Wed Aug 11 09:29:27 UTC 2021 Vips::VERSION "2.1.4" ```