BufferGeometry
Object3D
Raycaster
Camera
CubeCamera
PerspectiveCamera
OrthographicCamera
StereoCamera
Clock
Curve
CurvePath
Path
Shape
ShapePath
ArrowHelper
AxesHelper
BoxHelper
Box3Helper
CameraHelper
DirectionalLightHelper
GridHelper
PolarGridHelper
HemisphereLightHelper
PlaneHelper
PointLightHelper
SkeletonHelper
SpotLightHelper
Light
PointLight
RectAreaLight
SpotLight
DirectionalLight
HemisphereLight
LightShadow
PointLightShadow
AnimationLoader
AudioLoader
BufferGeometryLoader
CompressedTextureLoader
CubeTextureLoader
DataTextureLoader
FileLoader
ImageBitmapLoader
ImageLoader
Loader
LoaderUtils
MaterialLoader
ObjectLoader
TextureLoader
LoadingManager
Material
Box2
Box3
Color
Cylindrical
Euler
Frustum
Interpolant
Line3
MathUtils
Matrix3
Matrix4
Plane
Quaternion
AnimationAction
AnimationClip
AnimationMixer
AnimationObjectGroup
AnimationUtils
keyframeTrack
PropertyBinding
PropertyMixer
BooleanKeyframeTrack
QuaternionKeyframeTrack
StringKeyframeTrack
Audio
AudioAnalyser
AudioContext
AudioListener
PositionalAudio

Object3D.setRotationFromQuaternion()

setRotationFromQuaternion()方法将 Object3D 对象的旋转从四元数转换为欧拉角,并将其应用于对象的旋转属性。

语法

object.setRotationFromQuaternion(quaternion)

参数

  • quaternion- 用于设置对象旋转的四元数。

描述

setRotationFromQuaternion() 方法使用四元数将对象的旋转转换为欧拉角,并将其应用于对象的旋转属性。 四元数用于表示3D空间中的旋转,通常用于解决旋转和旋转顺序的问题。

示例

const object = new THREE.Object3D()

// 设置四元数
const quaternion = new THREE.Quaternion()
quaternion.setFromAxisAngle(new THREE.Vector3(0, 1, 0), Math.PI / 2)

// 将四元数转换为欧拉角,并将其应用于对象的旋转属性
object.setRotationFromQuaternion(quaternion)

注意事项

setRotationFromQuaternion() 方法只接受 THREE.Quaternion 对象作为参数。

在使用 setRotationFromQuaternion() 方法后,对象的旋转属性将被修改,因此需要谨慎使用。

在使用四元数进行旋转时,请注意旋转的顺序。 四元数旋转的顺序是从右至左绕轴进行,与欧拉角旋转的顺序不同。

参考文献