Skip to content

Commit

Permalink
refs #10530. Fix for rhel6. numpy 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Nov 27, 2014
1 parent a192e69 commit 1cc17a9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -111,7 +111,7 @@ def __calculate_extents(self, v, u, w, limits):
for k in Krange:
for l in Lrange:
original_corner=np.array([h,k,l])
new_coords[counter]=original_corner.dot(Minv)
new_coords[counter]=np.dot(original_corner, Minv)
counter += 1

# Get the min max extents
Expand Down

0 comments on commit 1cc17a9

Please sign in to comment.