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

Matrix3.makeScale()

介绍

Matrix3.makeScale() 是 Three.js 中的一个静态方法,用于创建一个缩放矩阵。该方法会将一个 3D 对象沿着 x、y、z 方向进行缩放。

语法

Matrix3.makeScale(x, y, z)

参数

  • xyz:缩放因子。

返回值

该方法返回一个 Matrix3 对象,表示缩放矩阵。

示例

下面的例子展示了使用 Matrix3.makeScale() 方法创建缩放矩阵的过程:

// 创建一个缩放矩阵,将一个物体沿着 x、y、z 方向进行缩放
const scaleMatrix = new THREE.Matrix3().makeScale(2, 1, 0.5);

参考链接