围绕其中心旋转图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了围绕其中心旋转图像相关的知识,希望对你有一定的参考价值。

  1. float counter;
  2. PImage img;
  3.  
  4. void setup()
  5. {
  6. counter=0.0;
  7. size(300,300);
  8. img=loadImage("brownplane.png");
  9. }
  10.  
  11. void draw()
  12. {
  13. background(0);
  14. counter++;
  15. translate(width/2-img.width/2, height/2-img.height/2);
  16. rotate(counter*TWO_PI/360);
  17. translate(-img.width/2, -img.height/2);
  18. image(img,0,0);
  19. }

以上是关于围绕其中心旋转图像的主要内容,如果未能解决你的问题,请参考以下文章

当围绕其中心旋转图像时,为啥需要添加/减去质心?

如何使用 Pygame 围绕其中心旋转图像?

围绕其中心旋转 UIImageView

无法在openGL中围绕它的中心旋转我的图像

围绕其中心旋转图像

如何计算围绕其中心旋转的矩形的边界框?