API Docs for: 2.0.0
Show:

Polygon Class

Module: PIXI

Constructor

Polygon

(
  • points
)

Parameters:

  • points Array | Array | Point... | Number... multiple

    This can be an array of Points that form the polygon, a flat array of numbers that will be interpreted as [x,y, x,y, ...], or the arguments passed can be all the points of the polygon e.g. new PIXI.Polygon(new PIXI.Point(), new PIXI.Point(), ...), or the arguments passed can be flat x,y values e.g. new PIXI.Polygon(x,y, x,y, x,y, ...) where x and y are Numbers.

Item Index

Methods

Methods

clone

() Polygon

Creates a clone of this polygon

Returns:

Polygon:

a copy of the polygon

contains

(
  • x
  • y
)
Boolean

Checks whether the x and y coordinates passed to this function are contained within this polygon

Parameters:

  • x Number

    The X coordinate of the point to test

  • y Number

    The Y coordinate of the point to test

Returns:

Boolean:

Whether the x/y coordinates are within this polygon