围绕其中心旋转图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了围绕其中心旋转图像相关的知识,希望对你有一定的参考价值。
float counter; PImage img; void setup() { counter=0.0; size(300,300); img=loadImage("brownplane.png"); } void draw() { background(0); counter++; translate(width/2-img.width/2, height/2-img.height/2); rotate(counter*TWO_PI/360); translate(-img.width/2, -img.height/2); image(img,0,0); }
以上是关于围绕其中心旋转图像的主要内容,如果未能解决你的问题,请参考以下文章