当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing beginContour()用法及代码示例


Processing, beginContour()用法介绍。

用法

  • beginContour()

返回

  • void

说明

使用beginContour()endContour() 函数在形状内创建负形状,例如字母'O' 的中心。 beginContour() 开始记录形状的顶点,endContour() 停止记录。定义负形状的顶点必须在与外部形状相反的方向上"wind"。首先按顺时针顺序为外部形状绘制顶点,然后为内部形状逆时针绘制顶点。



这些函数只能在 beginShape() /endShape() 对中使用,并且 translate()rotate()scale() 等转换在 beginContour() /endContour() 对中不起作用。也不能在其中使用其他形状,例如ellipse()rect()

例子

size(400,400);
translate(200, 200);
stroke(255, 0, 0);
beginShape();
// Exterior part of shape, clockwise winding
vertex(-160, -160);
vertex(160, -160);
vertex(160, 160);
vertex(-160, 160);
// Interior part of shape, counter-clockwise winding
beginContour();
vertex(-80, -80);
vertex(-80, 80);
vertex(80, 80);
vertex(80, -80);
endContour();
endShape(CLOSE);
Image output for example 1

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 beginContour()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。