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

mergeFaces

mergeFaces 是 Yuka js 库中 ConvexHull 类的一个方法。该方法可以合并凸壳中的面。

函数参数

mergeFaces 不需要传递任何参数。

函数返回值

mergeFaces 方法返回合并后的面。

函数描述

mergeFaces 方法合并凸壳中的所有面。合并规则如下:

  1. 根据共享两条边来寻找面之间的共同点。
  2. 将共同点连接起来形成新的面。
  3. 删除并索引所有被合并的面。

最终,mergeFaces 方法返回所有被合并的面。

示例

const convexHull = new YUKA.ConvexHull(points);
const faces = convexHull.faces;
const mergedFaces = convexHull.mergeFaces();

注意事项

  • mergeFaces 方法只能应用于凸包中的面,不能应用于非凸包中的面。
  • mergeFaces 方法会修改凸包的内部结构。在调用方法后,凸包的一些面可能已被删除,并且凸包的索引可能已被更新。