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 5daee0b commit 233b94fCopy full SHA for 233b94f
examples/3d_charts/src/main.rs
@@ -172,9 +172,9 @@ fn mesh_3d_plot(show: bool) -> Plot {
172
vec![0, 1, 2, 0],
173
vec![0, 0, 1, 2],
174
vec![0, 2, 0, 1],
175
- vec![0, 0, 0, 1],
176
- vec![1, 2, 3, 2],
177
- vec![2, 3, 1, 3],
+ Some(vec![0, 0, 0, 1]),
+ Some(vec![1, 2, 3, 2]),
+ Some(vec![2, 3, 1, 3]),
178
)
179
.intensity(vec![0.0, 0.33, 0.66, 1.0])
180
.color_scale(ColorScale::Palette(ColorScalePalette::Rainbow));
0 commit comments