grid [-default] [-displayAxes boolean] [-displayAxesBold boolean] [-displayDivisionLines boolean] [-displayGridLines boolean] [-displayOrthographicLabels boolean] [-displayPerspectiveLabels boolean] [-divisions uint] [-orthographicLabelPosition string] [-perspectiveLabelPosition string] [-reset] [-size linear] [-spacing linear] [-style uint] [-toggle boolean]
grid は「元に戻す」が可能、「照会」が可能、「編集」が不可能です。
このコマンドは、パース ビューと正射投影ビューで表示される地表プレーンの、ラインのサイズと間隔を変更します。 このコマンドは地表プレーンをリセットし、そのサイズとグリッド ラインの間隔、グリッドのサブディビジョンと表示オプションを変更します。なし
戻り値の型は照会モードでは照会フラグが基になります。
ロング ネーム(ショート ネーム) | 引数型 | プロパティ | ||
---|---|---|---|---|
-toggle(-tgl)
|
boolean
|
|||
|
||||
-reset(-r)
|
|
|||
|
||||
-default(-df)
|
|
|||
|
||||
-spacing(-sp)
|
linear
|
|||
|
||||
-size(-s)
|
linear
|
|||
|
||||
-divisions(-d)
|
uint
|
|||
|
||||
-displayAxes(-da)
|
boolean
|
|||
|
||||
-displayGridLines(-dgl)
|
boolean
|
|||
|
||||
-displayDivisionLines(-ddl)
|
boolean
|
|||
|
||||
-displayPerspectiveLabels(-dpl)
|
boolean
|
|||
|
||||
-displayOrthographicLabels(-dol)
|
boolean
|
|||
|
||||
-displayAxesBold(-dab)
|
boolean
|
|||
|
||||
-perspectiveLabelPosition(-plp)
|
string
|
|||
|
||||
-orthographicLabelPosition(-olp)
|
string
|
|||
|
||||
-style(-st)
|
uint
|
|||
|
: コマンドの作成モードで使用可能なフラグ | : コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ | : 1 つのコマンドで複数回使用可能なフラグ |
//To toggle the grid display of the grid (in all views): grid -toggle (! `grid -q -toggle`) // To reset the grid to default values: grid -reset; // To change the grid spacing and subdivisions: grid -spacing 10 -d 10; // To set the defaults for inches grid -default -spacing 1in -size 1ft -divisions 4; // To change the size of the grid to 20x20, extending 10 units // in each direction: grid -spacing 10; // To query the current size of the grid: // returns a size in the current linear unit. grid -query -size; // A typical grid would be a grid size of 20x20, with // major grid lines every 5 units, with 5 divisions between // major grid lines. This be done with the following command. grid -size 10cm -sp 5.0cm -d 5 ; // Turn on numeric grid labels. // grid -displayPerspectiveLabels true; // Display grid labels along the axes. // grid -perspectiveLabelPosition "axis";