Processing, 類PShape
中的endContour()
用法介紹。
用法
sh.endContour()
參數
sh
(PShape)
任何 PShape 類型的變量
返回
void
說明
beginContour()
和 endContour()
方法可以定義具有其他形狀的形狀。例如,字母'O' 的內部。這兩個函數總是一起使用,你永遠不會使用一個沒有另一個。在它們之間,定義您要創建的幾何圖形。正如您在運行上麵的示例時所看到的,第二個較小的形狀是從第一個較大的形狀中剪下的。
外部形狀和內部輪廓必須在相反的方向上wind
。這意味著如果外部形狀的幾何點按順時針順序說明,則內部形狀上的點按逆時針順序定義。
例子
PShape s;
void setup() {
size(200, 200, P2D);
// Make a shape
s = createShape();
s.beginShape();
//s.noStroke();
// Exterior part of shape
s.vertex(-50,-50);
s.vertex(50,-50);
s.vertex(50,50);
s.vertex(-50,50);
// Interior part of shape
s.beginContour();
s.vertex(-20,-20);
s.vertex(-20,20);
s.vertex(20,20);
s.vertex(20,-20);
s.endContour();
// Finish off shape
s.endShape(CLOSE);
}
void draw() {
background(204);
translate(width/2, height/2);
s.rotate(0.01);
shape(s);
}
相關用法
- Processing PShape.endShape()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing PShape.setStroke()用法及代碼示例
- Processing PShape.addChild()用法及代碼示例
- Processing PShape.isVisible()用法及代碼示例
- Processing PShape.getChildCount()用法及代碼示例
- Processing PShape.getVertex()用法及代碼示例
- Processing PShape.resetMatrix()用法及代碼示例
- Processing PShape.rotateX()用法及代碼示例
- Processing PShape.getChild()用法及代碼示例
- Processing PShape.rotateY()用法及代碼示例
- Processing PShape.setVisible()用法及代碼示例
- Processing PShape.beginContour()用法及代碼示例
- Processing PShape.beginShape()用法及代碼示例
- Processing PShape.getVertexCount()用法及代碼示例
- Processing PShape.setFill()用法及代碼示例
- Processing PShape.rotate()用法及代碼示例
- Processing PShape.scale()用法及代碼示例
- Processing PShape.disableStyle()用法及代碼示例
- Processing PShape.translate()用法及代碼示例
- Processing PShape.setVertex()用法及代碼示例
- Processing PShape用法及代碼示例
- Processing PShader用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PVector.set()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 PShape.endContour()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。