I want to draw 2D curves in a 3D plot. As an example, funkce[1, 2, 3, 1, 0, 1000, 0, 100] is one curve, funkce[1, 2, 3, 2, 0, 1000, 0, 100] the second one etc. Results need to be something like this: https://community.wolfram.com/groups/-/m/t/1028305
MyPoint[o_, w_, a_, b_, c_, t_] := {-(a*(o^2 - w^2) + b*o + c) + (2*a*o*w + b*w)*(w*Sin[w*t] - o*Cos[w*t])/(w*Cos[w*t] + o*Sin[w*t]), (o^2 + w^2)/(w*Cos[w*t] + o*Sin[w*t])*(2*a*o*w + b*w)*E^(t*o)}; MyPoint2[o_, r_, a_, b_, c_,t_] := {r, -o*(r + (a*o^2 + b*o + c)/1)*E^(t*o)}; funkce[A_, B_, C_, T_, X1_, XN_, Y1_, YN_] := Module[{a = A, b = B, c = C, t = T, x1 = X1, xn = XN, y1 = Y1, yn = YN}, (* d2 *)(*o = 0, w > 0, hranice*) d2 = ParametricPlot[MyPoint[0, w, a, b, c, t], {w, 0, 300}, PlotRange -> {{x1, xn}, {y1, yn}}, PlotStyle -> {Thickness[0.007], Red}]; (* d3 *)(*o > 0, w > 0*) d3 = {}; For[i = 0.0001, i < 30, i = i + 1, AppendTo[d3, ParametricPlot[MyPoint[i, w, a, b, c, t], {w, 0, 300}, PlotRange -> {{x1, xn}, {y1, yn}}, BoundaryStyle -> Black, PlotStyle -> {Thickness[0.0025], LightRed}]]]; (*d4*) (*o > 0, w = 0*) d4 = ParametricPlot[ MyPoint2[o, r, a, b, c, t], {o, 0, 30}, {r, x1, xn}, PlotRange -> {{x1, xn}, {y1, yn}}, PlotPoints -> 50, PlotStyle -> {Directive[LightBlue, Opacity[0.7]]}, Mesh -> Full, MeshStyle -> {Directive[LightBlue, Opacity[0.5]]}]; Show[d4, d3, d2, Frame -> True, LabelStyle -> None, LabelStyle -> {FontFamily -> "Times New Roman", FontSize -> 12, FontColor -> Black}, FrameLabel -> {"\!\(\*SubscriptBox[\(k\), \(p\)]\)", "\!\(\*SubscriptBox[\(k\), \(i\)]\)"}(*,PlotLabel->Style[ "The Stability Region in the (Subscript[k, p], Subscript[k, i]) Plane",Black,Bold,FontFamily->"Times New Roman",FontSize-> 12]*)]]; My problem is that I want to print in a 3D box several images that are the output of the function[a, b, c, t, x1, xn, y1, yn]. Which we can see in the picture below. Each image was created by combining three parametric plots. 


