設定

Choose language

Sewistパターンデザイナーのドキュメント
検索

コンテンツ:

タグ:


並び順:

縫い手

オンラインパターンデザイナー

ドキュメント

コードの説明

サイズガイド

人体測定測定
8結果の1-8を表示しています。

template("alias")

This function inserts another pattern script into the current pattern script.

template
template("alias")
grade(size name,(size value,float),(size value, float))

Defines a number variable depending on the mentioned size constant. The number is changed according to arithmetic progression.

grade
grade(size name,(size value,float),(size value, float))
info (objects, strings, variables)

Outputs strings, values of variables, or information about objects in console.

info
info (objects, strings, variables)
end

Terminates execution of the code.

end
end
no (variable or object)

Determine whether a variable or an object exist, i.e. were defined before in the code.

no
no (variable or object)
for (i=1,i<5,i++)

Programming a loop. Expressions can be separated by commas or by semicolon.

for
for (i=1,i&lt;5,i++)
break

Ends execution of the current for, foreach, while, do-while or switch structure.

break
break
continue

Used within looping structures to skip the rest of the current loop iteration and continue execution at the condition evaluation and then the beginning of the next iteration.

continue
continue