Processing, endContour()
用法介绍。
用法
endContour()
返回
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);
相关用法
- Processing endCamera()用法及代码示例
- Processing endRaw()用法及代码示例
- Processing endShape()用法及代码示例
- Processing endRecord()用法及代码示例
- Processing exp()用法及代码示例
- Processing emissive()用法及代码示例
- Processing else用法及代码示例
- Processing ellipseMode()用法及代码示例
- Processing extends用法及代码示例
- Processing expand()用法及代码示例
- Processing ellipse()用法及代码示例
- Processing exit()用法及代码示例
- Processing FFT用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing FloatDict用法及代码示例
- Processing FFT.stop()用法及代码示例
- Processing join()用法及代码示例
- Processing () (parentheses)用法及代码示例
- Processing Pulse用法及代码示例
- Processing PShader用法及代码示例
- Processing PVector.set()用法及代码示例
- Processing FloatDict.sortKeysReverse()用法及代码示例
- Processing texture()用法及代码示例
- Processing IntDict.add()用法及代码示例
- Processing PShape.enableStyle()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 endContour()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。