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

fromContour

描述

fromContourPolygon 类的一个静态方法,可以将一个表示多边形轮廓的数组转换成 Polygon 对象。

用法

fromContour 方法使用如下:

const polygon = Polygon.fromContour(contour);

其中,contour 是一个表示多边形轮廓的数组,必须至少包含三个顶点,每个顶点都是一个表示坐标的数组 [x, y]

fromContour 返回一个新的 Polygon 对象,表示由 contour 表示的多边形。

示例

以下示例展示了如何使用 fromContour 方法转换一个多边形轮廓:

const contour = [[0, 0], [0, 10], [10, 10], [10, 0]];
const polygon = Polygon.fromContour(contour);
console.log(polygon.points);
// 输出: [[0, 0], [0, 10], [10, 10], [10, 0]]

异常

如果 contour 数组描述的不是一个有效的多边形,则会抛出一个 TypeError 异常。

参考