We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7308fb1 commit 89bdf25Copy full SHA for 89bdf25
mathics/eval/drawing/plot3d_vectorized.py
@@ -30,11 +30,9 @@ def eval_Plot3D(
30
names = [strip_context(str(range[0])) for range in plot_options.ranges]
31
32
# Mesh option
33
- nmesh = None
34
- if isinstance(plot_options.mesh, int):
35
- nmesh = plot_options.mesh
36
- elif plot_options.mesh is not SymbolNone:
37
- nmesh = 20
+ nmesh = 20
+ if plot_options.mesh is SymbolNone:
+ nmesh = 0
38
39
# color-blind friendly palette from https://davidmathlogic.com/colorblind
40
palette = [
0 commit comments