SourceTermAnalysisSystem_vue/node_modules/point-in-polygon/example/inside.js

7 lines
277 B
JavaScript
Raw Normal View History

2026-05-15 10:22:44 +08:00
var pointInPolygon = require('../');
var polygon = [ [ 1, 1 ], [ 1, 2 ], [ 2, 2 ], [ 2, 1 ] ];
console.log(pointInPolygon([ 1.5, 1.5 ], polygon)); // true
console.log(pointInPolygon([ 4.9, 1.2 ], polygon)); // false
console.log(pointInPolygon([ 1.8, 1.1 ], polygon)); // true