import { IDrawerProps, IPropArguments, IShapeBufferSettings } from '../../types'; import { ShapeBuffer } from '../ShapeBuffer'; /** * * @category Shapes.ShapeBuffer * @class Line * @extends {ShapeBuffer} */ declare class Line = IDrawerProps> extends ShapeBuffer { static buffer: Float32Array; /** * Two point, based on ShapeBuffer * * @param {ShapeBaseSettings} [settings={}] * @memberof Line */ constructor(settings?: IShapeBufferSettings); /** * @link https://gist.github.com/pborissow/5c92b77a804688385c77749d1187ba07 */ static toPolygon(buffer: Float32Array, thickness: number | Array): Float32Array; } export { Line }; //# sourceMappingURL=Line.d.ts.map