9 releases

new 0.14.4 Apr 7, 2025
0.14.3 Mar 25, 2025
0.14.0 Feb 7, 2025
0.13.10 Nov 1, 2024

#725 in Math

Download history 85/week @ 2025-02-01 51/week @ 2025-02-08 5/week @ 2025-02-15 2/week @ 2025-02-22 110/week @ 2025-03-01 31/week @ 2025-03-08 118/week @ 2025-03-15 136/week @ 2025-03-22 20/week @ 2025-03-29 112/week @ 2025-04-05

386 downloads per month

MPL-2.0 license

20KB
104 lines

cubing.rs

Features from cubing.js in Rust.

Structure

See https://docs.rs/cubing/latest/cubing/ for Rust docs.

A subset of the cubing.js API is implemented under:

  • cubing::alg
  • cubing::kpuzzle
  • cubing::puzzles

Most applications will use str.parse::<Alg>() and KPuzzle as entry points into the API:

use cubing::{alg::parse_alg, puzzles::cube3x3x3_kpuzzle};

pub fn main() {
    let kpuzzle = cube3x3x3_kpuzzle();
    let default_pattern = kpuzzle.default_pattern();

    let input_alg = parse_alg!("R U R' F' U2 L' U' L F U2");

    let input_pattern = default_pattern
        .apply_alg(&input_alg)
        .expect("Input alg is not valid for puzzle.");
    println!(
        "The following alg {} the puzzle to its original pattern (including center orientation): {}",
        if default_pattern == input_pattern { "returns" } else { "does NOT return" },
        input_alg,
    )
}

Development

This repository contains a port of f2lfast that is useful for exercising functionality (although it's not yet at full speed):

cargo run --example f2lfast -- --scramble "U2 F2 U' L' U L D2 F D2 B' D2 B D2 L2 B L2 F"

Run tests using:

make test

Dependencies

~4–6MB
~104K SLoC