Processing, strokeWeight()
用法介绍。
用法
strokeWeight(weight)
参数
weight
(float)
笔画的权重(以像素为单位)
返回
void
说明
设置用于线条、点和形状周围边框的笔触宽度。所有宽度均以像素为单位设置。
使用带有 strokeWeight(1) 或更小的 point() 可能不会在屏幕上绘制任何内容,具体取决于计算机的图形设置。解决方法包括使用设置像素set() or drawing the point using either
circle() or square().
例子
size(400, 400);
strokeWeight(4); // Default
line(80, 80, 320, 80);
strokeWeight(16); // Thicker
line(80, 160, 320, 160);
strokeWeight(40); // Beastly
line(80, 280, 320, 280);
相关用法
- Processing strokeJoin()用法及代码示例
- Processing stroke()用法及代码示例
- Processing strokeCap()用法及代码示例
- Processing str()用法及代码示例
- Processing static用法及代码示例
- Processing scale()用法及代码示例
- Processing splice()用法及代码示例
- Processing super用法及代码示例
- Processing subset()用法及代码示例
- Processing saveJSONArray()用法及代码示例
- Processing saveXML()用法及代码示例
- Processing switch用法及代码示例
- Processing sqrt()用法及代码示例
- Processing serverEvent()用法及代码示例
- Processing save()用法及代码示例
- Processing saveStrings()用法及代码示例
- Processing saveTable()用法及代码示例
- Processing shorten()用法及代码示例
- Processing saturation()用法及代码示例
- Processing settings()用法及代码示例
- Processing spotLight()用法及代码示例
- Processing setLocation()用法及代码示例
- Processing splitTokens()用法及代码示例
- Processing setResizable()用法及代码示例
- Processing specular()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 strokeWeight()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。