當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing sqrt()用法及代碼示例


Processing, sqrt()用法介紹。

用法

  • sqrt(n)

參數

  • n (float) 非負數

返回

  • float

說明

計算數字的平方根。一個數字的平方根總是正的,即使可能有一個有效的負根。 a 的平方根 s 等於 s*s = a 。它與平方相反。

例子

size(400, 400);
noStroke();
float a = sqrt(104976);   // Sets 'a' to 324
float b = sqrt(10000);  // Sets 'b' to 100
float c = sqrt(256);   // Sets 'c' to 16
rect(0, 100, a, 40);
rect(0, 180, b, 40);
rect(0, 260, c, 40);
Image output for example 1

有關的

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 sqrt()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。