Processing, 類PShape
中的rotate()
用法介紹。
用法
sh.rotate(angle)
參數
sh
(PShape)
任何 PShape 類型的變量angle
(float)
以弧度指定的旋轉角度
返回
void
說明
將形狀旋轉 angle
參數指定的量。角度應以弧度指定(值從 0 到 TWO_PI)或使用 radians()
方法轉換為弧度。
形狀總是圍繞其邊界框的左上角旋轉。正數按順時針方向旋轉對象。轉換適用於之後發生的所有事情,隨後對該方法的調用會累積效果。例如,調用 rotate(HALF_PI)
然後 rotate(HALF_PI)
與 rotate(PI)
相同。此轉換直接應用於形狀,每次運行 draw()
時都不會刷新。
例子
PShape s;
void setup() {
size(100, 100);
s = loadShape("ohio.svg");
}
void draw() {
background(204);
shape(s);
}
void mousePressed() {
// Rotate the shape each time the mouse is pressed
s.rotate(0.1);
}
相關用法
- Processing PShape.rotateX()用法及代碼示例
- Processing PShape.rotateY()用法及代碼示例
- Processing PShape.resetMatrix()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing PShape.setStroke()用法及代碼示例
- Processing PShape.addChild()用法及代碼示例
- Processing PShape.isVisible()用法及代碼示例
- Processing PShape.getChildCount()用法及代碼示例
- Processing PShape.getVertex()用法及代碼示例
- Processing PShape.getChild()用法及代碼示例
- Processing PShape.setVisible()用法及代碼示例
- Processing PShape.beginContour()用法及代碼示例
- Processing PShape.beginShape()用法及代碼示例
- Processing PShape.endShape()用法及代碼示例
- Processing PShape.getVertexCount()用法及代碼示例
- Processing PShape.setFill()用法及代碼示例
- Processing PShape.endContour()用法及代碼示例
- Processing PShape.scale()用法及代碼示例
- Processing PShape.disableStyle()用法及代碼示例
- Processing PShape.translate()用法及代碼示例
- Processing PShape.setVertex()用法及代碼示例
- Processing PShape用法及代碼示例
- Processing PShader用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PVector.set()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 PShape.rotate()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。