UNPKG

@bitbybit-dev/base

Version:

Bit By Bit Developers Base CAD Library to Program Geometry

20 lines (19 loc) 451 B
import { Base } from "../../inputs/base-inputs"; export declare class VectorCharData { constructor(width?: number, height?: number, paths?: Base.Point3[][]); /** * The width of the char * @default undefined */ width?: number; /** * The height of the char * @default undefined */ height?: number; /** * The segments of the char * @default undefined */ paths?: Base.Point3[][]; }