Added package
This commit is contained in:
parent
632a65bd5c
commit
65467fbb0a
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/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
|
from functools import reduce
|
||||||
|
|
||||||
class OBJParser(ModelParser):
|
class OBJParser(ModelParser):
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from model import ModelParser, Exporter, Vertex, Face, FaceVertex
|
from .model import ModelParser, Exporter, Vertex, Face, FaceVertex
|
||||||
|
|
||||||
class PLYParser(ModelParser):
|
class PLYParser(ModelParser):
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
import argparse
|
import argparse
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from obj import OBJParser
|
from conv3d.obj import OBJParser
|
||||||
from ply import PLYExporter
|
from conv3d.ply import PLYExporter
|
||||||
from functools import partial
|
from functools import partial
|
||||||
|
|
||||||
def check_path(path, should_exist):
|
def check_path(path, should_exist):
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
import argparse
|
import argparse
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from obj import OBJExporter
|
from conv3d.obj import OBJExporter
|
||||||
from ply import PLYParser
|
from conv3d.ply import PLYParser
|
||||||
from functools import partial
|
from functools import partial
|
||||||
|
|
||||||
def check_path(path, should_exist):
|
def check_path(path, should_exist):
|
||||||
|
|
Loading…
Reference in New Issue