| Combine two shapes and position them in a scene. JavaView accepts a list of geometries. |
In[1]:=
<< Graphics`Shapes`
In[2]:=
g1 = TranslateShape[Graphics3D[Torus[]], {1., 0., 0.}];
In[3]:=
g2 = RotateShape[Graphics3D[MoebiusStrip[1., 0.2, 30]], Pi/2., Pi/2., 0.];
In[4]:=
JavaView[{g1,g2}]
|