Added package

This commit is contained in:
Thomas FORGIONE 2016-11-21 17:05:52 +01:00
parent 632a65bd5c
commit 65467fbb0a
5 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
from model import ModelParser, Exporter, Vertex, TexCoord, Normal, FaceVertex, Face
from .model import ModelParser, Exporter, Vertex, TexCoord, Normal, FaceVertex, Face
from functools import reduce
class OBJParser(ModelParser):

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
from model import ModelParser, Exporter, Vertex, Face, FaceVertex
from .model import ModelParser, Exporter, Vertex, Face, FaceVertex
class PLYParser(ModelParser):

View File

@ -3,8 +3,8 @@
import argparse
import os
from obj import OBJParser
from ply import PLYExporter
from conv3d.obj import OBJParser
from conv3d.ply import PLYExporter
from functools import partial
def check_path(path, should_exist):

View File

@ -3,8 +3,8 @@
import argparse
import os
from obj import OBJExporter
from ply import PLYParser
from conv3d.obj import OBJExporter
from conv3d.ply import PLYParser
from functools import partial
def check_path(path, should_exist):