معرفی شرکت ها


dlin-0.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Describe the cycles on a scrambled Rubik's Cube
ویژگی مقدار
سیستم عامل -
نام فایل dlin-0.1.0
نام dlin
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Elliott Kobelansky
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/elliottkobelansky/dlin
آدرس اینترنتی https://pypi.org/project/dlin/
مجوز MIT
# dlin-tracer Describe piece cycles on a Rubik's Cube. ## Usage: As a Python Package If you would like to use the tracer as a python package, please follow the following instructions. ### Installing To install, run ``` pip install dlin ``` ### Using The `dlin.tracer` function converts a scramble (set of moves defined by [WCA regulation 12a](https://www.worldcubeassociation.org/regulations/#12a) separated by spaces) into a python dictionary describing cycles on the cube. To use, run ```python from dlin import tracer ``` The following is example code to get the tracing for a scramble. ```python described_cycles = tracer("F' L2 B2 F2 D' F2 D F2 U R2 U' L' B L' R' F2 R2 B2 U2 Fw'") ``` Here is an example of what could be contained in `described_cycles` ```python { "edge": [ { "type": "cycle", "buffer": "UF", "targets": ["LD", "LF", "RU", "LU"], "orientation": 0, "parity": 0, }, { "type": "cycle", "buffer": "UB", "targets": ["RB", "DR"], "orientation": 1, "parity": 0, }, { "type": "cycle", "buffer": "FR", "targets": ["DB", "DF"], "orientation": 1, "parity": 0, }, ], "corner": [ { "type": "cycle", "buffer": "UFR", "targets": ["UBL", "RUB", "RDB", "FDR", "UFL", "FDL"], "orientation": 1, "parity": 0, }, { "type": "misoriented", "location": "DBL", "targets": [], "orientation": -1, "parity": 0, }, ], "scramble": "F' L2 B2 F2 D' F2 D F2 U R2 U' L' B L' R' F2 R2 B2 U2 Fw'", "rotation": ["z"], } ``` ## Usage: Command Line Script Run ```dlin-trace [scramble]``` Make sure to surround the scramble in quotation marks. This will output a json, with similar structure to the dictionary shown above.


نیازمندی

مقدار نام
- numpy


نحوه نصب


نصب پکیج whl dlin-0.1.0:

    pip install dlin-0.1.0.whl


نصب پکیج tar.gz dlin-0.1.0:

    pip install dlin-0.1.0.tar.gz