remove xreadline, some other small updates (testing new svn)
This commit is contained in:
@@ -183,7 +183,7 @@ def create_materials(filepath, material_libs, unique_materials, unique_material_
|
||||
#print '\t\tloading mtl: "%s"' % mtlpath
|
||||
context_material= None
|
||||
mtl= open(mtlpath)
|
||||
for line in mtl.xreadlines():
|
||||
for line in mtl: #.xreadlines():
|
||||
if line.startswith('newmtl'):
|
||||
context_material_name= line_value(line.split())
|
||||
if unique_materials.has_key(context_material_name):
|
||||
@@ -536,7 +536,7 @@ def get_float_func(filepath):
|
||||
- weather to replace commas or not
|
||||
'''
|
||||
file= open(filepath, 'r')
|
||||
for line in file.xreadlines():
|
||||
for line in file: #.xreadlines():
|
||||
if line.startswith('v'): # vn vt v
|
||||
if ',' in line:
|
||||
return lambda f: float(f.replace(',', '.'))
|
||||
@@ -586,7 +586,7 @@ def load_obj(filepath, CLAMP_SIZE= 0.0, CREATE_FGONS= True, CREATE_SMOOTH_GROUPS
|
||||
print '\tpassing obj file "%s"...' % filepath,
|
||||
time_sub= sys.time()
|
||||
file= open(filepath, 'r')
|
||||
for line in file.xreadlines():
|
||||
for line in file: #.xreadlines():
|
||||
|
||||
if line.startswith('v '):
|
||||
line_split= line.split()
|
||||
|
||||
Reference in New Issue
Block a user