-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae1d31f
commit 3f5686e
Showing
21 changed files
with
3,321 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Sphinx configuration.""" | ||
|
||
project = "Arclang" | ||
author = "Sai Surbehera" | ||
copyright = "2024, Sai Surbehera" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Nox sessions.""" | ||
|
||
import os | ||
import shlex | ||
import shutil | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Functions 1 | ||
|
||
## C++ to Python Port Checklist | ||
|
||
- [x] Col / col | ||
- [x] Pos / pos | ||
- [x] Square / square | ||
- [x] Line / line | ||
- [x] getPos / get_pos | ||
- [x] getSize / get_size | ||
- [x] hull / hull | ||
- [x] toOrigin / to_origin | ||
- [x] getW / get_w | ||
- [x] getH / get_h | ||
- [x] hull0 / hull0 | ||
- [x] getSize0 / get_size0 | ||
- [x] Move / move | ||
- [x] filterCol / filter_col | ||
- [x] broadcast / broadcast | ||
- [x] colShape / col_shape | ||
- [x] compress / compress | ||
- [x] embedSlow / (Not ported, but embed function exists) | ||
- [x] embed / embed | ||
- [x] compose / compose | ||
- [x] outerProductIS / outer_product_is | ||
- [x] outerProductSI / outer_product_si | ||
- [x] Fill / fill | ||
- [x] interior / interior | ||
- [x] border / border | ||
- [x] alignx / align_x | ||
- [x] aligny / align_y | ||
- [x] align / align | ||
- [x] align (matching version) / align_images | ||
- [x] replaceCols / replace_cols | ||
- [x] center / center | ||
- [x] transform / transform | ||
- [x] mirrorHeuristic / mirror_heuristic | ||
- [x] rigid / rigid | ||
- [x] invert / invert | ||
- [x] interior2 / interior2 | ||
- [x] count / count | ||
- [x] myStack / my_stack | ||
- [x] wrap / wrap | ||
- [x] smear / smear | ||
- [x] extend / extend | ||
- [x] pickMax / pick_max | ||
- [x] maxCriterion / max_criterion | ||
- [x] cut / cut | ||
- [x] splitCols / split_cols | ||
- [x] compose (for vector of Images) / compose_list | ||
- [x] getRegular / get_regular | ||
- [x] cutPickMax / cut_pick_max | ||
- [x] regularCutPickMax / regular_cut_pick_max | ||
- [x] splitPickMax / split_pick_max | ||
- [x] cutCompose / cut_compose | ||
- [x] regularCutCompose / regular_cut_compose | ||
- [x] splitCompose / split_compose | ||
- [x] cutIndex / cut_index | ||
- [x] pickMaxes / pick_maxes | ||
- [x] pickNotMaxes / pick_not_maxes | ||
- [x] cutPickMaxes / cut_pick_maxes | ||
- [x] splitPickMaxes / split_pick_maxes | ||
- [x] heuristicCut / heuristic_cut | ||
- [x] repeat / repeat | ||
- [x] mirror / mirror | ||
- [x] majCol / maj_col | ||
|
||
Additional Python functions not in C++: | ||
- [x] get_alternating | ||
- [x] get_constant | ||
- [x] get_repeating | ||
|
||
|
||
# Functions 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Command-line interface.""" | ||
|
||
import click | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
MAXSIDE = 100 | ||
MAXAREA = 40 * 40 | ||
MAXPIXELS = 40 * 40 * 5 |
Oops, something went wrong.