Extends
Members
The maximum number of points to consider an object "batchable", able to be batched by the renderer's batch system.
- Default Value:
- 100
Batches need to regenerated if the geometry is updated.
- Default Value:
- -1
batches Array<PIXI.graphicsUtils.BatchPart>
Intermediate abstract format sent to batch system. Can be converted to drawCalls or to batchable objects.
bounds PIXI.Bounds readonly
Get the current bounds of the graphic geometry.
Since 6.5.0, bounds of the graphics geometry are calculated based on the vertices of generated geometry.
Since shapes or strokes with full transparency (alpha: 0
) will not generate geometry, they are not considered
when calculating bounds for the graphics geometry. See PR #8343
and issue #8623.
Padding to add to the bounds.
- Default Value:
- 0
Minimal distance between points that are considered different. Affects line tesselation.
- Default Value:
- 0.0001
The collection of colors
drawCalls Array<PIXI.BatchDrawCall>
List of current draw calls drived from the batches.
graphicsData Array<PIXI.GraphicsData>
The collection of drawn shapes.
The indices of the vertices
An array of points to draw, 2 numbers per point
Reference to the texture IDs.
The UVs collection
_bounds PIXI.Bounds protected
Cached bounds.
The bounds dirty flag.
- Default Value:
- -1
Used to check if the cache is dirty.
- Default Value:
- -1
Used to detect if we cleared the graphicsData.
- Default Value:
- 0
Used to detect if the graphics object has changed.
- Default Value:
- 0
Index of the last batched shape in the stack of calls.
- Default Value:
- 0
Methods
Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.
Returns:
Type | Description |
---|---|
PIXI.GraphicsGeometry |
|
Check to see if a point is contained within this geometry.
Name | Type | Description |
---|---|---|
point |
IPointData |
Point to check if it's contained. |
Returns:
Type | Description |
---|---|
boolean | true if the point is contained within geometry. |
destroy () void overrides
Destroys the GraphicsGeometry object.
drawHole (shape, matrix) PIXI.GraphicsGeometry
Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.
Name | Type | Default | Description |
---|---|---|---|
shape |
PIXI.Circle | PIXI.Ellipse | PIXI.Polygon | PIXI.Rectangle | PIXI.RoundedRectangle |
The shape object to draw. |
|
matrix |
PIXI.Matrix | undefined |
Transform applied to the points of the shape. |
Returns:
Type | Description |
---|---|
PIXI.GraphicsGeometry |
|
drawShape (shape, fillStyle, lineStyle, matrix) PIXI.GraphicsGeometry
Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.
Name | Type | Default | Description |
---|---|---|---|
shape |
PIXI.Circle | PIXI.Ellipse | PIXI.Polygon | PIXI.Rectangle | PIXI.RoundedRectangle |
The shape object to draw. |
|
fillStyle |
PIXI.FillStyle | undefined |
Defines style of the fill. |
lineStyle |
PIXI.LineStyle | undefined |
Defines style of the lines. |
matrix |
PIXI.Matrix | undefined |
Transform applied to the points of the shape. |
Returns:
Type | Description |
---|---|
PIXI.GraphicsGeometry |
|
Generates intermediate batch data. Either gets converted to drawCalls or used to convert to batch objects directly by the Graphics object.
Affinity check
Name | Type | Description |
---|---|---|
styleA |
PIXI.FillStyle | PIXI.LineStyle | |
styleB |
PIXI.FillStyle | PIXI.LineStyle |
Returns:
Type | Description |
---|---|
boolean |
Add colors.
Name | Type | Default | Description |
---|---|---|---|
colors |
Array<number> |
List of colors to add to |
|
color |
number |
Color to add |
|
alpha |
number |
Alpha to use |
|
size |
number |
Number of colors to add |
|
offset |
number | 0 |
Add texture id that the shader/fragment wants to use.
Name | Type | Default | Description |
---|---|---|---|
textureIds |
Array<number> | ||
id |
number | ||
size |
number | ||
offset |
number | 0 |
Generates the UVs for a shape.
Name | Type | Default | Description |
---|---|---|---|
verts |
Array<number> |
Vertices |
|
uvs |
Array<number> |
UVs |
|
texture |
PIXI.Texture |
Reference to Texture |
|
start |
number |
Index buffer start index. |
|
size |
number |
The size/length for index buffer. |
|
matrix |
PIXI.Matrix | undefined |
Optional transform for all points. |
Modify uvs array according to position of texture region Does not work with rotated or trimmed textures
Name | Type | Description |
---|---|---|
uvs |
Array<number> |
array |
texture |
PIXI.Texture |
region |
start |
number |
starting index for uvs |
size |
number |
how many points to adjust |
Converts intermediate batches data to drawCalls.
Update the local bounds of the object. Expensive to use performance-wise.
Call if you changed graphicsData manually. Empties all batch buffers.
Checks to see if this graphics geometry can be batched. Currently it needs to be small enough and not contain any native lines.
Returns:
Type | Description |
---|---|
boolean |
Packs attributes to single buffer.
Offset the indices so that it works with the batcher.
Process fill part of Graphics.
Name | Type | Description |
---|---|---|
data |
PIXI.GraphicsData |
Process the holes data.
Name | Type | Description |
---|---|---|
holes |
Array<PIXI.GraphicsData> |
Process line part of Graphics.
Name | Type | Description |
---|---|---|
data |
PIXI.GraphicsData |
Transform points using matrix.
Name | Type | Description |
---|---|---|
points |
Array<number> |
Points to transform |
matrix |
PIXI.Matrix |
Transform matrix |
Test geometry for batching process.
Returns:
Type | Description |
---|---|
boolean |
Inherited Properties
From class PIXI.BatchGeometry
_buffer PIXI.Buffer protected inherited
Buffer used for position, color, texture IDs
_indexBuffer PIXI.Buffer protected inherited
Index buffer data
From class PIXI.Geometry
glVertexArrayObjects object inherited
A map of renderer IDs to webgl VAOs
instanceCount number inherited
Number of instances in this geometry, pass it to GeometrySystem.draw()
.
- Default Value:
- 1
instanced boolean inherited
Whether the geometry is instanced.
refCount number inherited
Count of existing (not destroyed) meshes that reference this geometry.
Inherited Methods
From class PIXI.Geometry
addAttribute (id, buffer, size, normalized, type, stride, start, instance) this inherited
Adds an attribute to the geometry
Note: stride
and start
should be undefined
if you dont know them, not 0!
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
id |
string |
the name of the attribute (matching up to a shader) |
||
buffer |
PIXI.Buffer | number<Array> |
the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it. |
||
size |
number | 0 |
the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 |
|
normalized |
boolean | false |
should the data be normalized. |
|
type |
PIXI.TYPES |
<optional> |
PIXI.TYPES.FLOAT |
what type of number is the attribute. Check PIXI.TYPES to see the ones available |
stride |
number |
<optional> |
0 |
How far apart, in bytes, the start of each value is. (used for interleaving data) |
start |
number |
<optional> |
0 |
How far into the array to start reading values (used for interleaving data) |
instance |
boolean | false |
Instancing flag |
Returns:
Type | Description |
---|---|
this |
|
addIndex (buffer) PIXI.Geometry inherited
Adds an index buffer to the geometry The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer.
Name | Type | Attributes | Description |
---|---|---|---|
buffer |
PIXI.Buffer | number<Array> |
<optional> |
The buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it. |
Returns:
Type | Description |
---|---|
PIXI.Geometry |
|
clone () PIXI.Geometry inherited
Returns a clone of the geometry.
Returns:
Type | Description |
---|---|
PIXI.Geometry |
|
dispose () void inherited
Disposes WebGL resources that are connected to this geometry.
getAttribute (id) PIXI.Attribute inherited
Returns the requested attribute.
Name | Type | Description |
---|---|---|
id |
string |
The name of the attribute required |
Returns:
Type | Description |
---|---|
PIXI.Attribute |
|
getBuffer (id) PIXI.Buffer inherited
Returns the requested buffer.
Name | Type | Description |
---|---|---|
id |
string |
The name of the buffer required. |
Returns:
Type | Description |
---|---|
PIXI.Buffer |
|
getIndex () PIXI.Buffer inherited
Returns the index buffer
Returns:
Type | Description |
---|---|
PIXI.Buffer |
|
getSize () number inherited
Get the size of the geometries, in vertices.
Returns:
Type | Description |
---|---|
number |
interleave () PIXI.Geometry inherited
This function modifies the structure so that all current attributes become interleaved into a single buffer This can be useful if your model remains static as it offers a little performance boost
Returns:
Type | Description |
---|---|
PIXI.Geometry |
|