import type { IMaterial } from '@antv/g-plugin-device-renderer'; import { Material } from '@antv/g-plugin-device-renderer'; import { Texture, Device } from '@antv/g-device-api'; export interface IPointMaterial extends IMaterial { /** * gl_PointSize */ size?: number; /** * color map, will override fill color */ map?: Texture; } /** * not affected by lights * @see https://threejs.org/docs/#api/en/materials/PointMaterial */ export declare class PointMaterial extends Material { /** * color map, will override fill color */ get map(): Texture; set map(v: Texture); get size(): number; set size(v: number); constructor(device: Device, props?: Partial); } //# sourceMappingURL=PointMaterial.d.ts.map