Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.4 KB

README.md

File metadata and controls

44 lines (29 loc) · 1.4 KB

Rubik Master

Crates.io documentation CI Tokei

cube-demo3.mov

Do you like to solve Rubik's cube? I do.

As a cuber and programmer, I want to build a toolset to build applications like

  • Solver
  • Virtual Cube (As WebGL component)
  • Cube net printer
  • Tool to find more ergonomic OLL/PLL
  • (Semi-)Automatic scrambler

In this library, the state of the cube is expressed as 54x54 permutation matrix which consumes only 54 bytes in memory and the multiplication costs only O(54) since the matrix is sparse.

Features

This library includes the following modules

  • Core: The matrix representation of cube state and rotation.
  • Parser: Parser for rotation notes like RUR'U'.
  • Cube Component: Yew component to visualize a cube. Animation supported.

I am open to any suggestions.

How to run a demo

To run a demo/cubeviewer

  • cd demo/cubeviewer
  • trunk serve. If you don't have trunk installed please follow the guide.

Author

Akira Hayakawa (@akiradeveloper)