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

linkOpponent

描述

linkOpponent 函数用于在半边数据结构(HalfEdge)中创建反向半边之间的链接。

语法

HalfEdge.linkOpponent(he1, he2);

参数

  • he1 :必需。表示要创建反向链接的半边。
  • he2 :必需。表示要与 he1 创建反向链接的半边。

示例

const he1 = new HalfEdge();
const he2 = new HalfEdge();

// 在两个半边之间创建反向链接
HalfEdge.linkOpponent(he1, he2);

注意事项

  • linkOpponent 函数只适用于半边数据结构(HalfEdge)中的对象。
  • 通过 linkOpponent 创建反向链接时,两个半边必须满足以下条件:
    • 两个半边的起始点和终点必须相同。
    • 两个半边的方向性必须相反。
    • 两个半边所属的面必须相同。

参考链接