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

AnimationUtils.sortedArray()

概述

AnimationUtilsthree.js 中的一个工具类,包含了许多用于帮助进行动画的方法。 sortedArray() 方法是其中一个用于排序 keyframe 的方法。

语法

AnimationUtils.sortedArray(array, cmpFunc)

参数

  • array - 一个包含 keyframe(关键帧) 的数组。
  • cmpFunc - 一个用于比较 keyframe 的回调函数。

描述

sortedArray() 方法用于对 keyframe 数组进行排序。 常见的排序方式有 时间(time) 升序/降序,帧号(index) 升序/降序等。

排序回调函数需要遵循以下规则:

  • 如果第一个参数应该排在第二个参数之前,则返回一个负数。
  • 如果第一个参数应该排在第二个参数之后,则返回一个正数。
  • 如果两个参数相等,则返回 0

示例

const sortedArray = AnimationUtils.sortedArray(keyframes, (a,b) => {
    if (a.time < b.time) return -1;
    if (a.time > b.time) return 1;
    return 0;
});

console.log(sortedArray);

这个示例将按时间对 keyframes 数组进行升序排序。

返回值

排序后的数组。

参考资料