UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

15 lines (14 loc) 555 B
import { BevelParams } from './TextMesh'; import { TextShapesParams } from './TextShapes'; import { TextType } from './TextType'; import { BufferGeometry } from 'three'; import { Font } from '../../loader/font/Font'; interface TextBuildGeometriesParams extends BevelParams, TextShapesParams { textType: TextType; font: Font; extrude: number; curveSegments: number; strokeWidth: number; } export declare function textBuildGeometries(params: TextBuildGeometriesParams): Promise<Array<BufferGeometry | undefined> | undefined>; export {};