LoginSignup
3
2

More than 5 years have passed since last update.

【three.jsのヘルパー解説集】 ②AxisHelperの使い方

Posted at

AxisHelper

継承:THREE.Line
解説:X、Y、Zの三軸を可視化してくれるヘルパーです。Xが赤、Yが緑、Zが青で表示されます。カメラやオブジェクトがどちらを向いているか分かりにくい際に表示させると便利です。

デモ

Untitled.gif

実装例

javascript
var axisHelper = new THREE.AxisHelper( 5 );
scene.add( axisHelper );

AxisHelper(size)

  • size:軸の大きさ
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2