Skip to content

Commit 07e284e

Browse files
committed
First!
0 parents  commit 07e284e

24 files changed

+1417
-0
lines changed

LICENSE

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
The code/programs (Software) contained in this repository are Copyright
2+
(c) 2021, Matthew J. Roy
3+
4+
Released on the basis of GNU GPL 3.0
5+
http://www.gnu.org/licenses/gpl-3.0.en.html
6+
7+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
8+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
9+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
10+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
11+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
12+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
13+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
14+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
15+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
16+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

MANIFEST.in

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
include d3dslic3r/meta/background.png
2+
include d3dslic3r/meta/clippy.png
3+
include d3dslic3r/meta/dippy.png
4+
include d3dslic3r/meta/Logo.png
5+
include d3dslic3r/meta/noslice.png
6+
include d3dslic3r/meta/sys_icon.png
7+
include README.MD

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)
2+
3+
<span>![<span>Logo</span>](assets/Logo.png)</span>
4+
5+
DED SLICER (ded ˈslaɪ.sər) or dee three dee slick three arrr is a utility for discombobulating geometry into paths for direct energy deposition that might work. Garantees are as firm as the current documentation. Start it up, click the buttons, read the tool tips and see what it does.
6+
7+
# Installation
8+
Install it from source using the tarball in the dist folder, or try your luck with PyPI:
9+
10+
~~~
11+
pip install d3dslic3r
12+
~~~
13+
14+
# Getting it to run
15+
16+
It was written with Python 3.11, no garantees that it will run with anything more, it may run on 3.9, but don't test your luck.
17+
~~~
18+
python -m d3dslic3r.main
19+
~~~

assets/Armadillo.stl

16.5 MB
Binary file not shown.

assets/Logo.png

53 KB
Loading

assets/Stanford_Bunny.stl

5.36 MB
Binary file not shown.

d3dslic3r.egg-info/PKG-INFO

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Metadata-Version: 2.1
2+
Name: d3dslic3r
3+
Version: 0.1
4+
Summary: DED SLICER
5+
Home-page: https://github.com/majroy/d3dslic3r
6+
Author: M J Roy
7+
Author-email: [email protected]
8+
License: Creative Commons Attribution-Noncommercial-Share Alike license
9+
Keywords: 3D printing,direct energy deposition,slicer,Computer aided manufacturing
10+
Classifier: Development Status :: 3 - Alpha
11+
Classifier: Environment :: Win32 (MS Windows)
12+
Classifier: Topic :: Scientific/Engineering :: Visualization
13+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14+
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
15+
Classifier: Programming Language :: Python :: 3.11
16+
Classifier: Intended Audience :: End Users/Desktop
17+
Classifier: Natural Language :: English
18+
License-File: LICENSE
19+
20+
https://github.com/majroy/d3dslic3r

d3dslic3r.egg-info/SOURCES.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
LICENSE
2+
MANIFEST.in
3+
README.MD
4+
README.md
5+
setup.py
6+
d3dslic3r/d3dslic3r_common.py
7+
d3dslic3r/export_widget.py
8+
d3dslic3r/main.py
9+
d3dslic3r/slic3_widget.py
10+
d3dslic3r.egg-info/PKG-INFO
11+
d3dslic3r.egg-info/SOURCES.txt
12+
d3dslic3r.egg-info/dependency_links.txt
13+
d3dslic3r.egg-info/requires.txt
14+
d3dslic3r.egg-info/top_level.txt
15+
d3dslic3r/meta/Logo.png
16+
d3dslic3r/meta/background.png
17+
d3dslic3r/meta/clippy.png
18+
d3dslic3r/meta/dippy.png
19+
d3dslic3r/meta/nogeometry.png
20+
d3dslic3r/meta/noslice.png
21+
d3dslic3r/meta/sys_icon.png
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

d3dslic3r.egg-info/requires.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
vtk>=6.0
2+
numpy
3+
scipy
4+
pyyaml>=5.0
5+
matplotlib
6+
PyQt5>=5
7+
h5py
8+
scikit-learn
9+
shapely
10+
pyclipper

d3dslic3r.egg-info/top_level.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d3dslic3r

0 commit comments

Comments
 (0)