Skip to content

Commit

Permalink
Fixed bug in area
Browse files Browse the repository at this point in the history
  • Loading branch information
JJWTimmer committed Dec 10, 2012
1 parent ae47484 commit 920ea2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heatmap/heatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def heatmap(self, points, dotsize=150, opacity=128, size=(1024, 1024), scheme="c
arrScheme, arrFinalImage, opacity, self.override,
ctypes.c_float(self.area[0][0]), ctypes.c_float(
self.area[0][1]),
ctypes.c_float(self.area[1][0]), ctypes.c_float(self.area[1][0]))
ctypes.c_float(self.area[1][0]), ctypes.c_float(self.area[1][1]))

if not ret:
raise Exception("Unexpected error during processing.")
Expand Down

0 comments on commit 920ea2c

Please sign in to comment.