Removed useless hashbangs
This commit is contained in:
parent
02cfdbf1b9
commit
69286684d5
|
@ -1,5 +1,3 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
from .geometry import Vector
|
from .geometry import Vector
|
||||||
|
|
||||||
from OpenGL.GL import *
|
from OpenGL.GL import *
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
from .geometry import Vector
|
from .geometry import Vector
|
||||||
|
|
||||||
import pygame
|
import pygame
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
import math
|
import math
|
||||||
|
|
||||||
class Vector:
|
class Vector:
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
class Material:
|
class Material:
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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__))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue