3d-tiles-renderer
Version:
https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification
12 lines (7 loc) • 326 B
TypeScript
import { PointsMaterial, PointsMaterialParameters, Vector2 } from 'three';
import { MVTGlyphAtlasTexture } from './MVTGlyphAtlasTexture.js';
export class MVTGlyphMaterial extends PointsMaterial {
glyphAtlas: MVTGlyphAtlasTexture;
readonly glyphCellSize: Vector2;
constructor( parameters?: PointsMaterialParameters );
}