Poul Riis wrote:
> I tried the following:
>
> from pystl import PySTL
> with PySTL('stl_test.stl') as stl:
> stl.add_triangle((0,0,0),(1,0,0),(0,1,0))
>
> I got the following error message:
>
> Traceback (most recent call last):
> File
>
On Wednesday 17 August 2016 18:56, Poul Riis wrote:
> I tried the following:
>
> from pystl import PySTL
> with PySTL('stl_test.stl') as stl:
> stl.add_triangle((0,0,0),(1,0,0),(0,1,0))
>
> I got the following error message:
Ah, bad news I am afraid. Tha
I tried the following:
from pystl import PySTL
with PySTL('stl_test.stl') as stl:
stl.add_triangle((0,0,0),(1,0,0),(0,1,0))
I got the following error message:
Traceback (most recent call last):
File
"C:/Users/pr/AppData/Local/Programs/Python/Python35-32/Lib/idlelib/pystl_m
On Wednesday 17 August 2016 16:36, Poul Riis wrote:
> Can someone deliver a minimal, fully working example with the pystl module,
> https://pypi.python.org/pypi/pystl/
>
> The only example code mentioned is the following:
>
> with PySTL(‘stl_test.stl’) as stl:
> stl.ad
Can someone deliver a minimal, fully working example with the pystl module,
https://pypi.python.org/pypi/pystl/
The only example code mentioned is the following:
with PySTL(‘stl_test.stl’) as stl:
stl.add_triangle( (0.0, 0.0, 0.5), (0.0, 1.0, 0.0), (1.0, 1.0, 0.5) )
but no matter what