Bug introduced in 11.1 and fixed in 11.2
[CASE:3892079] was created
[...] I have reproduced this problem with
PerformanceGoal
in version 11.1 and reported the issue to our developers [...]
Take this code:
Animate[
Plot3D[
Sin[t x y], {x, -3, 3}, {y, -3, 3}
, PlotRange -> {0, 1.2}, PerformanceGoal -> "Quality"
]
, {t, 0, 2}
, AnimationRunning -> False
, DisplayAllSteps -> True
]
V10.4 correct behavior
11+ regression
So it behaves like for the default PerformanceGoal :> $PerformanceGoal
.
Can't find other explanation except bugs. Win10 here, is this the case everywhere?
Win10 V11.1.1
Answer
The quick fix
is to use Block
:
Animate[
Block[{$PerformanceGoal = "Quality"}
, Plot3D[Sin[t x y], {x, -3, 3}, {y, -3, 3}
, PlotRange -> {0, 1.2}
]
]
, {t, 0, 2}
, AnimationRunning -> False
, DisplayAllSteps -> True
]
Comments
Post a Comment