vvvvで図形描画するのに必要な知識
図形を描画する
Render(EX9)ノードを使用する
表示方法は4種類ある
- Window (Alt + 1)
- Node (Alt + 2)
- Hidden (Alt + 3)
- FullScreen (Alt + Enter)
色々とある図形Node
Officalページのノード一覧
CategoryがDX9のnodeを抜き出してみた。
| name | category | type | help |
|---|---|---|---|
| Axis (DX9) | DX9 | module | draw three axis and... |
| AxisAndGrid (DX9) | DX9 | module | Draws the XZ-plane and... |
| Cursor (DX9 Boygrouped) | DX9 | module | draws a cross-shaped... |
| Cursor (DX9 Legacy) | DX9 | module | draws a cross-shaped... |
| Cursor (DX9) | DX9 | module | draws a cross-shaped... |
| Cylinder (DX9) | DX9 | module | cylinder built out of... |
| FullscreenQuad (DX9) | DX9 | module | |
| Grid (DX9) | DX9 | native | Renders a rectangle with... |
| GridSegment (DX9) | DX9 | native | Renders a grid segment... |
| IconView (DX9) | DX9 | module | Use to visualize... |
| Pillow (DX9) | DX9 | native | Renders a rectangle with... |
| Quad (DX9) | DX9 | native | Renders a rectangle in... |
| Rope (DX9) | DX9 | native | Renders a rope in the dx... |
| Segment (DX9) | DX9 | native | Renders a circular... |
| Sphere (DX9) | DX9 | native | Renders a Sphere in the... |
| Sprite (DX9 Rotary) | DX9 | module | A Sprite is a flat... |
| Sprite (DX9) | DX9 | module | A Sprite is a flat... |
| Triangle (DX9 Indexed) | DX9 | native | Renders a triangle in... |
図形の表示状態
図形の表示も3種類選択することができる
- Solid (Pointから面を構成している)
- WireFrame (Pointから線を構成している)
- Point (Pointのみの表示)
図形のMaterialを変更する
- 色 (Color)
- 画像 (Texture)
図形のTransformを変更する
図形の形状や位置を変更することができる
- 位置 (Translate)
- 大きさ (Scale)
- 回転 (Rotate)




