I wish to plot two line segments over the intervals [0,1] and [2,3]. Maple 2024 draws a single line segment over [0,3]. Oddly enough, if I specify a color option, then it produces the expected result!
This used to work correctly in Maple 2023. Perhaps this can be corrected in the forthcoming release?

> |
plots:-display(
plot(1, x=0..1),
plot(1, x=2..3), thickness=5);
|
> |
plots:-display(
plot(1, x=0..1),
plot(1, x=2..3),thickness=5, color=red);
|
 |
Download mw.mw