UNPKG

@awayjs/graphics

Version:
20 lines 658 B
import { Matrix } from '@awayjs/core'; import { IFillStyle } from '../IGraphicsData'; import { IMaterial } from '@awayjs/renderer'; export declare class BitmapFillStyle implements IFillStyle { static data_type: string; /** * The Vector of drawing commands as integers representing the path. */ material: IMaterial; imgWidth: number; imgHeight: number; matrix: Matrix; repeat: boolean; smooth: boolean; private _uvMatrix; constructor(material: IMaterial, matrix: Matrix, repeat: boolean, smooth: boolean); get data_type(): string; getUVMatrix(): Matrix; } //# sourceMappingURL=BitmapFillStyle.d.ts.map