UNPKG

permissive-fov

Version:

An implementation of Permissive Field Of View algorithm in JavaScript.

11 lines (10 loc) 224 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Point = (function () { function Point(x, y) { this.x = x; this.y = y; } return Point; }()); exports.Point = Point;