diff --git a/src/sage/plot/plot3d/implicit_surface.pyx b/src/sage/plot/plot3d/implicit_surface.pyx index df28f7c6e6b..581eddff2d4 100644 --- a/src/sage/plot/plot3d/implicit_surface.pyx +++ b/src/sage/plot/plot3d/implicit_surface.pyx @@ -522,7 +522,7 @@ cdef class MarchingCubesTriangles(MarchingCubes): if not(self.color_function is None): self.apply_color_func(&v.color, self.color_function, self.colormap, v) - y_vertices[y,z] = v + y_vertices[y,z] = v else: y_vertices[y,z] = None @@ -556,7 +556,7 @@ cdef class MarchingCubesTriangles(MarchingCubes): if not(self.color_function is None): self.apply_color_func(&v.color, self.color_function, self.colormap, v) - z_vertices[y,z] = v + z_vertices[y,z] = v else: z_vertices[y,z] = None @@ -631,7 +631,7 @@ cdef class MarchingCubesTriangles(MarchingCubes): if not(self.color_function is None): self.apply_color_func(&v.color, self.color_function, self.colormap, v) - x_vertices[y,z] = v + x_vertices[y,z] = v else: x_vertices[y,z] = None