Javascript 如何绕轴旋转 Three.js Vector3?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/10747510/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-24 02:46:26  来源:igfitidea点击:

How to rotate a Three.js Vector3 around an axis?

javascriptvectorrotationthree.js

提问by MaiaVictor

How to rotate a Three.js Vector3by a certain angle around an axis?

如何将 Three.js Vector3绕轴旋转一定角度?

回答by mrdoob

var vector = new THREE.Vector3( 1, 0, 0 );

var axis = new THREE.Vector3( 0, 1, 0 );
var angle = Math.PI / 2;

vector.applyAxisAngle( axis, angle );