UNPKG

handwritten-mathematics-recogniser

Version:

Easy and abstracted way to recognise handwritten mathematics in a browser or in a web view.

16 lines (14 loc) 283 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Point { constructor(x, y) { this.x = x; this.y = y; } set(x, y) { this.x = x; this.y = y; } } exports.Point = Point; //# sourceMappingURL=point.js.map