UNPKG

@bitbybit-dev/base

Version:

Bit By Bit Developers Base CAD Library to Program Geometry

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