py3: define xrange for python3

this is done in files where the xrange is used.
replace this with range once python2 is not supported anymore.
issue 0000995
This commit is contained in:
looooo
2017-05-17 18:24:17 +02:00
committed by wmayer
parent fed9d79153
commit ef22d5202d
6 changed files with 26 additions and 0 deletions

View File

@@ -20,6 +20,9 @@ import os, sys, struct
import numpy
# xrange is not available in python3
if sys.version_info.major >= 3:
xrange = range
# Exceptions

View File

@@ -7,7 +7,11 @@ Defines some routines for calculating normals and transforming points.
"""
import numpy
import sys
# xrange is not available in python3
if sys.version_info.major >= 3:
xrange = range
# Can push numpy.float64 (or even numpy.float80) into this if you
# would like to use higher precision when calculating; results will be