ジャンプ先: 概要. 戻り値. 関連. MEL 例.

概要

print int|float|string|vector|matrix|array

print は、取り消し不可能照会不可能、および 編集不可能 です。

print コマンドは、スクリプト エディタ(Script Editor)に引数を表示します(バッチ モードでは標準の出力)。引数が文字列でない場合は、文字列に変換されます。 新しい行は、自動的には出力にアペンドされません。

戻り値

なし

関連

fprint

MEL 例

// To print a scalar (int, float, string):
$i=42;
print $i;
// 42
$f=3.14159;
print $f;
// 3.14159
$s="Hello There";
print $s;
// Hello There
// To print a vector:
vector $v;
$v=<<1.2, 2.3, 3.4>>;
print $v;
// 1.2 2.3 3.4
// To print a matrix:
matrix $m[2][3]=<<3.14159, 2.3456781232131, 1; 4.561234586903, 5.342143, 42>>;
print $m;
// << 3.14159, 2.345678123, 1;
//    4.561234587, 5.342143, 42 >>
// To print an array:
string $a[];
$a=`ls -lights`;
print $a;
// ambientLightShape1
// directionalLightShape1
// pointLightShape1
// pointLightShape2
// To construct a string argument for the print command, use the
// + operator to concatenate elements of that string.
// Note that parentheses are required around expressions which
// form a single command argument.
print ("$i="+ $i + ", $f="+$f+"\n");
// $i=42, $f=3.14159