File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -522,7 +522,7 @@ cdef class MarchingCubesTriangles(MarchingCubes):
522
522
if not (self .color_function is None ):
523
523
self .apply_color_func(& v.color, self .color_function,
524
524
self .colormap, v)
525
- y_vertices[y,z] = v
525
+ y_vertices[y,z] = < object > v
526
526
else :
527
527
y_vertices[y,z] = None
528
528
@@ -556,7 +556,7 @@ cdef class MarchingCubesTriangles(MarchingCubes):
556
556
if not (self .color_function is None ):
557
557
self .apply_color_func(& v.color, self .color_function,
558
558
self .colormap, v)
559
- z_vertices[y,z] = v
559
+ z_vertices[y,z] = < object > v
560
560
else :
561
561
z_vertices[y,z] = None
562
562
@@ -631,7 +631,7 @@ cdef class MarchingCubesTriangles(MarchingCubes):
631
631
if not (self .color_function is None ):
632
632
self .apply_color_func(& v.color, self .color_function,
633
633
self .colormap, v)
634
- x_vertices[y,z] = v
634
+ x_vertices[y,z] = < object > v
635
635
else :
636
636
x_vertices[y,z] = None
637
637
You can’t perform that action at this time.
0 commit comments