@ue-too/math / index / samePoint
函式: samePoint()
samePoint(
a,b,precision?):boolean
定義於: index.ts:864
Checks if two points are approximately at the same location.
參數
a
First point
b
Second point
precision?
number
Optional tolerance for coordinate comparison
回傳
boolean
True if both x and y coordinates are within precision
備註
Uses approximatelyTheSame for coordinate comparison. For exact equality, use PointCal.isEqual instead.
範例
typescript
const a = { x: 1.0, y: 2.0 };
const b = { x: 1.0000001, y: 2.0000001 };
samePoint(a, b); // true (within default precision)
const c = { x: 1.1, y: 2.0 };
samePoint(a, c); // false