AABB
AlignmentBehavior
ArriveBehavior
AStar
BFS
BoundingSphere
BVH
BVHNode
Cell
CellSpacePartitioning
CohesionBehavior
CompositeGoal
ConvexHull
Corridor
CostTable
DFS
Dijkstra
Edge
EntityManager
EvadeBehavior
EventDispatcher
Behavior
FollowPathBehavior
FuzzyAND
FuzzyCompositeTerm
FuzzyFAIRLY
FuzzyModule
FuzzyOR
FuzzyRule
FuzzySet
FuzzyTerm
FuzzyVariable
FuzzyVERY
GameEntity
Goal
GoalEvaluator
Graph
GraphUtils
HalfEdge
HeuristicPolicyDijkstra
HeuristicPolicyEuclid
HeuristicPolicyEuclidSquared
HeuristicPolicyManhattan
InterposeBehavior
LeftSCurveFuzzySet
LeftShoulderFuzzySet
LineSegment
Logger
MathUtils
Matrix3
Matrix4
MemoryRecord
MemorySystem
MeshGeometry
MessageDispatcher
MovingEntity
NavEdge
NavMesh
NavMeshLoader
NavNode
Node
NormalDistFuzzySet
OBB
ObstacleAvoidanceBehavior
OffsetPursuitBehavior
OnPathBehavior
Path
Plane
Polygon
Polyhedron
PriorityQueue
PursuitBehavior
Quaternion
Ray
RectangleTriggerRegion
Regular
RightSCurveFuzzySet
RightShoulderFuzzySet
SAT
SeekBehavior
SeparationBehavior
SingletonFuzzySet
Smoother
SphericalTriggerRegion
State
StateMachine
SteeringBehavior
SteeringManager
Task
TaskQueue
Telegram
Think
Time
TriangularFuzzySet
Trigger
TriggerRegion
Vector3
Vehicle
Version
WanderBehavior

indices

在Yuka js库的MeshGeometry中,indices用于定义网格的索引。它是一个数组,其中包含一系列整数,这些整数指定了三角形网格中每个顶点的位置。

格式

indices是一个整数类型数组,每个元素表示网格上的一个点。根据三角形网格的定义,每个三角形由三个点的坐标表示,因此indices数组的长度必须是3的倍数。

用法

indices数组定义了构成三角形网格的三个顶点的索引,这些索引应与顶点数组中的顶点位置对应。在绘制网格的过程中,根据indices数组中的索引查找对应的顶点位置,并将其绘制出来,从而构成整个三角形。

示例

假设有一个包含6个顶点的网格,使用如下方式定义indices数组:

const indices = [0, 1, 2, 3, 4, 5];

其中,[0, 1, 2]表示第一个三角形的三个顶点的索引,[3, 4, 5]表示第二个三角形的三个顶点的索引。

注意事项

  • indices数组中的索引必须在顶点数组中存在,否则将无法正确绘制网格。
  • indices数组中的值必须是整数,否则将会出现绘制错误。
  • indices数组的长度必须是3的倍数,否则可能会出现绘制错误。