Skip to content

Commit

Permalink
Revert "[puzzle-geometry] Hotfix for z-fighting in Chrome."
Browse files Browse the repository at this point in the history
This reverts commit 239431a.

Addresses #355
  • Loading branch information
lgarron committed Jan 8, 2025
1 parent 7c823cc commit 330a191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cubing/twisty/views/3D/puzzles/PG3D.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 330a191

Please sign in to comment.