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


Processing strokeJoin()用法及代码示例


Processing, strokeJoin()用法介绍。

用法

  • strokeJoin(join)

参数

  • join (int) 斜接、斜切、圆形

返回

  • void

说明

设置连接线段的关节样式。这些接头可以是斜接、斜切或倒圆的,并使用相应的参数 MITRE、BEVEL 和 ROUND 指定。默认关节是 MITRE。

例子

size(400, 400);
noFill();
strokeWeight(40.0);
strokeJoin(MITER);
beginShape();
vertex(140, 80);
vertex(260, 200);
vertex(140, 320);
endShape();
Image output for example 1
size(400, 400);
noFill();
strokeWeight(40.0);
strokeJoin(BEVEL);
beginShape();
vertex(140, 80);
vertex(260, 200);
vertex(140, 320);
endShape();
Image output for example 2
size(400, 400);
noFill();
strokeWeight(40.0);
strokeJoin(ROUND);
beginShape();
vertex(140, 80);
vertex(260, 200);
vertex(140, 320);
endShape();
Image output for example 3

相关用法


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