Changes
Co-authored-by: Reifonas <211114984+Reifonas@users.noreply.github.com>
This commit is contained in:
@@ -189,7 +189,7 @@ export function detectHoleAtFace(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Kasa circle fit: returns { cx, cy, radius } in the input coordinate system */
|
/** Kasa circle fit: returns { cx, cy, radius } in the input coordinate system */
|
||||||
function circleFitKasa(points: { u: number; v: number }[]): { cx: number; cy: number; radius: number } | null {
|
export function circleFitKasa(points: { u: number; v: number }[]): { cx: number; cy: number; radius: number } | null {
|
||||||
const n = points.length;
|
const n = points.length;
|
||||||
if (n < 3) return null;
|
if (n < 3) return null;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user