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 .geometry import Vector
from OpenGL.GL import * from OpenGL.GL import *

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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