|
|
Re: Re: Solid modeling using Manipulate
Posted:
Jul 6, 2012 3:24 AM
|
|
I changed Alexei's Column[{...}] to Grid [{{....}}] which I prefer...this put all the plots on the same Line so I could see all at the same time....
jerry b...
-----Original Message----- From: Alexei Boulbitch Sent: Wednesday, July 04, 2012 2:33 AM Subject: Re: Solid modeling using Manipulate
ThickCyl[a_,t_,v_]={a Cos[t+v],1.2 t,a Sin[t+v]}; (* GLNarasimham SolidModelingThickCyl.nb *) Cyl=ParametricPlot3D[{Cos[t],u,Sin[t]},{t,0,2 Pi},{u,0,2 Pi},ViewPoint- >{3,1,2}] RingSlide=Manipulate[ParametricPlot3D[ThickCyl[a,t,v],{v,0,2 Pi},{a, 1,1.6},Mesh->{18,4},PlotRange->{{-1.8,1.8},{-.25,8}, {-1.8,1.8}},ViewPoint->{3,1,2}],{t,0,2 Pi,Pi/10}] FinRotn=Manipulate[ParametricPlot3D[ThickCyl[a,t,v],{t,0,2 Pi},{a, 1,1.6},Mesh->{18,4},PlotRange->{{-1.8,1.8},{-.25,8}, {-1.8,1.8}},ViewPoint->{3,1,2}],{v,0,2 Pi,Pi/10}] CylExpn=Manipulate[ParametricPlot3D[ThickCyl[a,t,v],{t,0,2 Pi},{v,0,2 Pi},Mesh->{18,18},PlotRange->{{-1.8,1.8},{-0.25,8}, {-1.8,1.8}},ViewPoint->{3,1,2}],{a,1,1.6,.1}]
How to combine the above four graphics into a single dynamic image with t,v and a Manipulates ?
Regards Narasimham
Try this:
Manipulate[ Column[{ ParametricPlot3D[{Cos[t], u, Sin[t]}, {t, 0, 2 Pi}, {u, 0, 2 Pi}, ViewPoint -> {3, 1, 2}], ParametricPlot3D[ThickCyl[a, t, v], {v, 0, 2 Pi}, {a, 1, 1.6}, Mesh -> {18, 4}, PlotRange -> {{-1.8, 1.8}, {-.25, 8}, {-1.8, 1.8}}, ViewPoint -> {3, 1, 2}], ParametricPlot3D[ThickCyl[a, t, v], {t, 0, 2 Pi}, {a, 1, 1.6}, Mesh -> {18, 4}, PlotRange -> {{-1.8, 1.8}, {-.25, 8}, {-1.8, 1.8}}, ViewPoint -> {3, 1, 2}], ParametricPlot3D[ThickCyl[a, t, v], {t, 0, 2 Pi}, {v, 0, 2 Pi}, Mesh -> {18, 18}, PlotRange -> {{-1.8, 1.8}, {-0.25, 8}, {-1.8, 1.8}}, ViewPoint -> {3, 1, 2}]
}],
{t, 0, 2 Pi, Pi/10}, {v, 0, 2 Pi, Pi/10}, {a, 1, 1.6, .1}]
Regards, Alexei
Alexei BOULBITCH, Dr., habil. IEE S.A. ZAE Weiergewan, 11, rue Edmond Reuter, L-5326 Contern, LUXEMBOURG
Office phone : +352-2454-2566 Office fax: +352-2454-3566 mobile phone: +49 151 52 40 66 44
e-mail: alexei.boulbitch@iee.lu
|
|