using plot_parametric(1,x,(x,-10,10)) with a constant value in one dimension in 2D works just fine, however in 3d using plot3d_parametric_line(1,x,x,(x,-10,10)) crashes. Probably because it can't use set_xlim via min and max values since they are the same for a constant...
using
plot_parametric(1,x,(x,-10,10))
with a constant value in one dimension in 2D works just fine, however in 3d usingplot3d_parametric_line(1,x,x,(x,-10,10))
crashes. Probably because it can't useset_xlim
viamin
andmax
values since they are the same for a constant...