remove xreadline, some other small updates (testing new svn)

This commit is contained in:
2007-05-29 04:15:45 +00:00
parent 0059e5118d
commit 9fec189e7a
3 changed files with 7 additions and 7 deletions

View File

@@ -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()