Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge request from my fork to yours #34

Open
wants to merge 60 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
bd756ce
add makefile to build images / examples
pschou Jun 2, 2021
0a2cfd4
remove pngs unused, and add second example block
pschou Jun 2, 2021
33d7fed
table update
pschou Jun 2, 2021
45d4cad
add circular_extrude
pschou Jun 2, 2021
7e1d3e3
update circular_extrude example
pschou Jun 2, 2021
f811f79
wip for polygon
pschou Jun 4, 2021
a9cc621
wip, adding 2d examples
pschou Jun 5, 2021
b4aad68
wip, add triangle and equilateral_polygon
pschou Jun 5, 2021
ed00a65
wip, update triangle to have distorted look
pschou Jun 5, 2021
10db324
wip, adding leg to polygon
pschou Jun 5, 2021
ae15f21
wip, fix rounded rectangle
pschou Jun 5, 2021
4642ef5
wip, fix equilateral_triangle to have radius and center
pschou Jun 5, 2021
501bb0f
wip, add rectangle examples for corners and more write up
pschou Jun 5, 2021
a27f9d4
wip, add taper_extrude
pschou Jun 6, 2021
cf489c2
wip, fix taper example
pschou Jun 6, 2021
12fea56
wip, fix taper example
pschou Jun 6, 2021
3a511f9
wip, taper_extrude with scale
pschou Jun 6, 2021
575158e
wip, remove redundancy
pschou Jun 6, 2021
085e3ad
add curved_polygon and edge
pschou Jun 18, 2021
a0b9fa7
fix image link broken
pschou Jun 18, 2021
d40bed2
move image
pschou Jun 18, 2021
8aaf422
add round polygon functions and fix examples
pschou Jun 25, 2021
2c9b0a3
make hello bigger
pschou Jun 25, 2021
b10aa05
rectangle on horizontal
pschou Jun 25, 2021
96e5b0a
fix readme images and example
pschou Jun 25, 2021
bef41ce
add steering wheel example
pschou Jun 25, 2021
2807d37
change urls to direct link
pschou Jun 25, 2021
4a7cfc4
fix save file name
pschou Jun 25, 2021
97e0d83
add spinning top
pschou Jun 26, 2021
e711be1
fix typo
pschou Jun 26, 2021
cbe3124
add mirror
pschou Jun 26, 2021
64e554f
flip mirror
pschou Jun 26, 2021
47f5433
wording
pschou Jun 26, 2021
1e48f4e
add mirror_copy
pschou Jun 26, 2021
b5946b4
add round top to top
pschou Jun 26, 2021
d2da1a6
add comments
pschou Jun 26, 2021
aa92c42
add example definition
pschou Jun 27, 2021
fe60d60
update README
pschou Jun 27, 2021
1cc801f
center image
pschou Jun 27, 2021
9e9b2db
center again
pschou Jun 27, 2021
7dc7479
add mirror and rounding negative example
pschou Jun 28, 2021
0af1e7b
make steering wheel
pschou Jun 29, 2021
d4da25e
add rounded_extrude_stack
pschou Jul 5, 2021
bc4c34c
syntax updates
pschou Jul 5, 2021
a07fbbc
add rounded cog, simplify, and step export
pschou Jul 11, 2021
71ad5b3
update render py
pschou Jul 11, 2021
23d720d
rounded_cog update for extreme radii
pschou Jul 11, 2021
34939bf
rounded_cog rounding
pschou Jul 11, 2021
d4d5eec
rounded_cog rounding
pschou Jul 11, 2021
57ae54c
update README
pschou Jul 11, 2021
ba5bce1
update README
pschou Jul 14, 2021
5907872
update README
pschou Jul 14, 2021
210f53e
update README
pschou Jul 14, 2021
9baa187
update README
pschou Jul 14, 2021
cd4efec
update README
pschou Jul 14, 2021
d9d5ddd
update documentation and limit num to int values
pschou Jul 24, 2021
bfa1604
more documentation updates
pschou Jul 24, 2021
7c11fe1
add slic3r and pycam
pschou Jul 25, 2021
0a269ed
add readme for gcode
pschou Jul 25, 2021
4a89656
Merge branch 'main' of github.com:pschou/py-sdf
pschou Nov 7, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/sdf.egg-info
*.stl
__pycache__
*.pyc

19 changes: 19 additions & 0 deletions INSTALL.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Windows

One needs to download and install python 3 and then do a pip install of the
packages. From the command line:

> python -m pip -q install scikit-image numpy meshio pyyaml



Linux

First install python3 and then, install the python packages:

$ python3 -m pip -q install scikit-image numpy meshio pyyaml

To setup the MicroSoft Fonts:

$ which cabextract || sudo yum install -q -y curl cabextract xorg-x11-font-utils fontconfig
$ [ -e /usr/share/fonts/msttcore/ ] || sudo yum install -q -y https://downloads.sourceforge.net/project/mscorefonts2/rpms/msttcore-fonts-installer-2.6-1.noarch.rpm
Loading