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


Processing abs()用法及代码示例


Processing, abs()用法介绍。

用法

  • abs(n)

参数

  • n (float, int) 要计算的数字

返回

  • float or int

说明

计算数字的绝对值(大小)。一个数的绝对值总是正的。

例子

int a = abs(153);      // Sets 'a' to 153
int b = abs(-15);      // Sets 'b' to 15
float c = abs(12.234); // Sets 'c' to 12.234
float d = abs(-9.23);  // Sets 'd' to 9.23 

相关用法


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