このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の byte 関数を説明します。
byte()
説明文
数値、数値の文字列表現、またはブール値をそのバイト表現に変換します。 1バイトは -128 から 127 までの整数にしかできないため、この範囲外の値が変換されると対応するバイト表現に折り返されます。数値、文字列、またはブール値の配列が渡されると同じ長さのバイトの配列が返されます。
構文
byte(n)
byte(ns)
パラメタ
-
n
String | Boolean | Number:変換する値 -
ns
Array:変換する配列
戻り値
Number:値のバイト表現
例1
print(byte(127)); // 127
print(byte(128)); // -128
print(byte(23.4)); // 23
print(byte('23 .4 ')); // 23
print(byte('hello')); // NaN
print(byte(true)); // 1
print(byte([0, 255, '100'])); // [0, -1, 100]
著作権
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
ライセンス
Creative Commons(CC BY-NC-SA 4.0) に従います。