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

Matrix4.setFromMatrix3()

该方法用于将一个3x3矩阵转换为4x4矩阵。

语法

setFromMatrix3(matrix3: Matrix3): Matrix4

参数

  • matrix3:类型为Matrix3的矩阵,需要转换为Matrix4。

返回值

返回一个新的Matrix4矩阵,该矩阵与传入的Matrix3矩阵相等。

描述

在three.js中,Matrix4类用于表示4x4矩阵,Matrix3类用于表示3x3矩阵。Matrix4.setFromMatrix3()方法可以将一个3x3矩阵转换为4x4矩阵。这个方法在一些计算中非常有用,例如,如果我们想要将一个2D平面中的向量转换为3D空间中的向量,我们可以使用该方法。

代码示例

以下示例演示如何使用Matrix4.setFromMatrix3()方法将一个3x3矩阵转换为4x4矩阵:

import * as THREE from 'three';

const matrix3 = new THREE.Matrix3();
matrix3.set(
  1, 0, 0,
  0, 1, 0,
  0, 0, 1
);

const matrix4 = new THREE.Matrix4().setFromMatrix3(matrix3);

console.log(matrix4.elements);

输出结果:

[1, 0, 0, 0,
 0, 1, 0, 0,
 0, 0, 1, 0,
 0, 0, 0, 1]

参考链接