绘图之间包含的旋转固体

时间:2019-05-16 20:00:39

标签: maple

我想绘制包含在平面z = x + 1/2和z = -x-1 / 2之间的圆柱体。此圆柱体的半径应等于1。

我试图在枫树帮助中找到一些东西。但是我的工作已经完成了:

enter image description here

因此,如您所见,我的圆柱体的半径为1,但我不知道如何将其包含在平面z = x + 1/2和z = -x-1 / 2之间。

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

我不明白您的意思是“包含在平面z = x + 1/2和z = -x-1 / 2之间”。

您是说介于x + 1/2和x-1 / 2之间吗?

restart;
C:=plots:-cylinderplot(0.5,theta=0..2*Pi,z=0.5..0.5+1/sqrt(2),
                       style=surface):
rotC:=plottools:-rotate(C,-3*Pi/4,[[0,0.5,0.5],[0,-0.5,0.5]]):

plots:-display(
  rotC,
  plot3d([x-1/2,x+1/2],x=-0.5..1,y=-0.75..0.75,
         style=surface,color=gray,transparency=0.5),
  scaling=constrained, view=-0.5..1
);

enter image description here