cubing / twsearch

🔍 Twizzle Search — a program to find algs and scrambles for twisty puzzles
GNU General Public License v3.0
24 stars 8 forks source link

3x3x3 definition confusion #7

Closed jgouly closed 1 year ago

jgouly commented 1 year ago

Is there a particular arrangement of the pieces in the sample 3x3x3.tws?

I'm trying to add slice moves, but it seems like the edges are just in a random order? (or at least one I don't understand)

This is what I have figured out so far:

# UF 10
# UB 11
# UR 8
# FL is 5
# FR is 1
# DF is 2
# BL is 3
rokicki commented 1 year ago

The sample tws files are not definitive. If you generate a new one using cubing.js you'll get a more conventional order, along with comments about what piece is what. I'm attaching the output of the following command:

node dist/bin/puzzle-geometry-bin.js --ksolve 3x3x3

Add --rotations if you want rotations as well.

/usr/local/bin/node

/Users/rokicki/cubing.js/dist/bin/puzzle-geometry-bin.js --ksolve 3x3x3

PuzzleGeometry 0.1 Copyright 2018 Tomas Rokicki.

# Name PuzzleGeometryPuzzle

Set CORNERS 8 3

1 F U R

2 B U R

3 B U L

4 F U L

5 F D R

6 F D L

7 B D L

8 B D R

Set EDGES 12 2

1 F U

2 U R

3 B U

4 U L

5 F D

6 D R

7 B D

8 D L

9 F R

10 F L

11 B R

12 B L

Solved CORNERS 1 2 3 4 5 6 7 8 EDGES 1 2 3 4 5 6 7 8 9 10 11 12 End

Move F CORNERS 4 2 3 6 1 5 7 8 2 0 0 1 1 2 0 0 EDGES 10 2 3 4 9 6 7 8 1 5 11 12 1 0 0 0 1 0 0 0 1 1 0 0 End

Move B CORNERS 1 8 2 4 5 6 3 7 0 1 2 0 0 0 1 2 EDGES 1 2 11 4 5 6 12 8 9 10 7 3 0 0 1 0 0 0 1 0 0 0 1 1 End

Move D CORNERS 1 2 3 4 6 7 8 5 EDGES 1 2 3 4 8 5 6 7 9 10 11 12 End

Move U CORNERS 2 3 4 1 5 6 7 8 EDGES 2 3 4 1 5 6 7 8 9 10 11 12 End

Move L CORNERS 1 2 7 3 5 4 6 8 0 0 1 2 0 1 2 0 EDGES 1 2 3 12 5 6 7 10 9 4 11 8 End

Move R CORNERS 5 1 3 4 8 6 7 2 1 2 0 0 2 0 0 1 EDGES 1 9 3 4 5 11 7 8 6 10 2 12 End

On Fri, Jan 13, 2023 at 7:01 AM Joey Gouly @.***> wrote:

Is there a particular arrangement of the pieces in the sample 3x3x3.tws?

I'm trying to add slice moves, but it seems like the edges are just in a random order? (or at least one I don't understand)

This is what I have figured out so far: UF 10 UB 11 UR 8 FL is 5 FR is 1 DF is 2 BL is 3

— Reply to this email directly, view it on GitHub https://github.com/cubing/twsearch/issues/7, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAMOLSZIBVFGQM4K4C6ZXNTWSFU5HANCNFSM6AAAAAAT2QCBEQ . You are receiving this because you are subscribed to this thread.Message ID: @.***>

--