From 330a191aaf0386ab96bc119b7aca7a8935e72c16 Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Tue, 7 Jan 2025 22:42:23 -0800 Subject: [PATCH] Revert "[puzzle-geometry] Hotfix for z-fighting in Chrome." This reverts commit 239431a0b5aa9f4e4ab3804b6ca90f0d6662ef4a. Addresses https://github.com/cubing/cubing.js/issues/355 --- src/cubing/twisty/views/3D/puzzles/PG3D.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cubing/twisty/views/3D/puzzles/PG3D.ts b/src/cubing/twisty/views/3D/puzzles/PG3D.ts index 549eab395..11475cc2e 100644 --- a/src/cubing/twisty/views/3D/puzzles/PG3D.ts +++ b/src/cubing/twisty/views/3D/puzzles/PG3D.ts @@ -274,7 +274,7 @@ class StickerDef { private foundationCoords(coords: number[]): number[] { const ncoords = coords.slice(); for (let i = 0; i < coords.length; i++) { - ncoords[i] = coords[i] * 0.995; + ncoords[i] = coords[i] * 0.999; } return ncoords; }