Attempt to migrate from numpy.numarray

This commit is contained in:
Georges Dupéron 2017-03-28 19:38:00 +02:00
parent f5c9dde0ac
commit ea6cd54b3e
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# no more nasty rounding with integer divisions
from __future__ import division
#import Numeric
import numpy.numarray as Numeric
import numpy as Numeric
from includes import *
from geosolver.matfunc import Vec
from quaternion import *

View File

@ -9,7 +9,7 @@ from geosolver import GeometricDecomposition
import delaunay._qhull as qhull
import delaunay.core as dcore
from geosolver.matfunc import Vec
import numpy.numarray as Numeric
import numpy as Numeric
try:
from OpenGL.GL import *

View File

@ -1,5 +1,5 @@
from includes import *
import numpy.numarray as Numeric
import numpy as Numeric
from geosolver.matfunc import Vec
class Quaternion: