⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
zrender
/
src
/
contain
/
Edit File: polygon.ts
import windingLine from './windingLine'; import { VectorArray } from '../core/vector'; const EPSILON = 1e-8; function isAroundEqual(a: number, b: number): boolean { return Math.abs(a - b) < EPSILON; } export function contain(points: VectorArray[], x: number, y: number) { let w = 0; let p = points[0]; if (!p) { return false; } for (let i = 1; i < points.length; i++) { const p2 = points[i]; w += windingLine(p[0], p[1], p2[0], p2[1], x, y); p = p2; } // Close polygon const p0 = points[0]; if (!isAroundEqual(p[0], p0[0]) || !isAroundEqual(p[1], p0[1])) { w += windingLine(p[0], p[1], p0[0], p0[1], x, y); } return w !== 0; }
Simpan