當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing PShape.beginContour()用法及代碼示例


Processing, 類PShape中的beginContour()用法介紹。

用法

  • sh.beginContour()

參數

  • 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.org大神的英文原創作品 PShape.beginContour()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。