Removed useless hashbangs

This commit is contained in:
Thomas FORGIONE 2016-12-01 14:00:49 +01:00
parent 02cfdbf1b9
commit 69286684d5
No known key found for this signature in database
GPG Key ID: 2A210FFC062E00C3
10 changed files with 0 additions and 22 deletions

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
from .geometry import Vector
from OpenGL.GL import *

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
from .geometry import Vector
import pygame

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
import math
class Vector:

View File

@ -1,9 +1,5 @@
#!/usr/bin/env python3
from math import sqrt
from ..geometry import Vector
from .mesh import Material, MeshPart
Vertex = Vector

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
class Material:

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
from .basemodel import ModelParser, Exporter, Vertex, TexCoord, Normal, FaceVertex, Face
from .mesh import Material, MeshPart
from functools import reduce

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
from .basemodel import ModelParser, Exporter, Vertex, Face, FaceVertex
def is_ply(filename):

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
from .basemodel import ModelParser, Exporter, Vertex, FaceVertex, Face
from .mesh import MeshPart

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
from .obj import is_obj, OBJParser, OBJExporter
from .ply import is_ply, PLYParser, PLYExporter
from .stl import is_stl, STLParser, STLExporter

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
import os
dir_path = os.path.dirname(os.path.realpath(__file__))