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


Processing PI用法及代码示例


Processing, 类PI用法介绍。

说明

PI 是一个数学常数,值为 3.1415927。它是圆的周长与其直径的比值。它与三角函数 sin()cos() 结合使用非常有用。

例子

size(400, 400);
float x = width/2;
float y = height/2;
float d = width * 0.8;
arc(x, y, d, d, 0, QUARTER_PI);
arc(x, y, d-80, d-80, 0, HALF_PI);
arc(x, y, d-160, d-160, 0, PI);
arc(x, y, d-240, d-240, 0, TWO_PI);
Image output for example 1

相关用法


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