UNPKG

@bitbybit-dev/base

Version:

Bit By Bit Developers Base CAD Library to Program Geometry

14 lines (13 loc) 312 B
export class VectorTextData { constructor(width, height, chars) { if (width !== undefined) { this.width = width; } if (height !== undefined) { this.height = height; } if (chars !== undefined) { this.chars = chars; } } }