[ create a new paste ] login | about

raoullevert

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by raoullevert:

Python, pasted on Jul 28:
1
2
3
4
5
from def3D import point, vertex


class STLImport():
    def __init__(self, filename):
...
view (70 lines)
Python, pasted on Jul 28:
1
2
3
4
5
from math import sqrt

class point():
    #Definition d'un point 3D
    def __init__(self, x = 0, y = 0, z=0):   
...
view (55 lines, 1 comment)