UNPKG

@davepagurek/flo-mat

Version:

Medial / Scale Axis Transform (MAT/SAT) Library.

13 lines (8 loc) 185 B
import { PointOnShape } from "./point-on-shape.js"; /** * @internal */ function isPosCorner(pos: PointOnShape) { return (pos.t === 0 || pos.t === 1); } export { isPosCorner }