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

getDirection方法

该方法是HalfEdge类的一个实例方法。

描述

该方法用于获取半边数据结构的方向。在半边数据结构中,每条边有两个方向,因此需要通过该方法来判断当前方向。

语法

halfEdge.getDirection();

参数

该方法无需传递参数。

返回值

该方法返回一个数字值,表示当前半边的方向。具体取值如下:

  • 1:表示该半边的方向是正向。
  • -1:表示该半边的方向是反向。

示例

const halfEdge = new HalfEdge();
const direction = halfEdge.getDirection();
console.log(direction); // 1或-1

备注

如果在构建半边数据结构时规定了表现正向的目标顶点与表现反向的起始顶点,那么可以根据该方法返回值来确定半边的起始顶点与目标顶点。默认情况下,规定半边的起始顶点为该半边所连接的顶点,目标顶点为连接顶点的下一个顶点。