Files
nothoughts/node_modules/pixi.js/lib/scene/graphics/shared/buildCommands/buildLine.d.ts
2025-08-04 18:57:35 +02:00

15 lines
547 B
TypeScript

import type { StrokeAttributes } from '../FillTypes';
/**
* Builds a line to draw using the polygon method.
* @param points
* @param lineStyle
* @param flipAlignment
* @param closed
* @param vertices
* @param _verticesStride
* @param _verticesOffset
* @param indices
* @param _indicesOffset
*/
export declare function buildLine(points: number[], lineStyle: StrokeAttributes, flipAlignment: boolean, closed: boolean, vertices: number[], _verticesStride: number, _verticesOffset: number, indices: number[], _indicesOffset: number): void;