sending a list of plots to draw2d



Hi

The function plot2d accepts lists of plots, like:
plot2d(plotlist,[x,0,1]);
where
plotlist:[x^2,x^3];

Is there a way to do the same with draw2d? I don't want
draw2d(explicit(x^2,x,0,1),explicit(x^3,x,0,1));
since that expects a fixed number of plots that can be changed only
manually, whereas the list plotlist can be expanded by usual list
manipulation tools.

Thanks,
Mahdiyar