Skip to content

Commit

Permalink
[twisty] Fix center dimming for 3x3x3.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Jan 2, 2021
1 parent 4e2158e commit 411d041
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/cubing/twisty/3D/puzzles/stickerings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import { PieceAppearance, PuzzleAppearance } from "./appearance";

// regular
const r: PieceAppearance = {
facelets: ["regular", "regular", "regular"],
facelets: ["regular", "regular", "regular", "regular"],
};

// dim / (already) solved
const d: PieceAppearance = {
facelets: ["dim", "dim", "dim"],
facelets: ["dim", "dim", "dim", "dim"], // TODO: 4th entry is for centers. Should be handled properly for all stickerings.
};

// dim / (already) oriented
Expand All @@ -28,7 +28,7 @@ const o: PieceAppearance = {

// ignored
const i: PieceAppearance = {
facelets: ["ignored", "ignored", "ignored"],
facelets: ["ignored", "ignored", "ignored", "ignored"],
};

// oriented
Expand All @@ -41,7 +41,7 @@ const invis: PieceAppearance = {
};

const c: PieceAppearance = {
facelets: ["invisible", "invisible", "invisible"],
facelets: ["invisible", "invisible", "invisible", "invisible"],
};

// TODO: generalize stickerings by performing e.g. intersection on orbit selectors
Expand Down

0 comments on commit 411d041

Please sign in to comment.