2011-09-15 27 views

回答

8

ShowPlot3D可以处理它。可能有很多其他方法。

l = Line[{{-2, -2, 41}, {6, 4, -10}}]; 

Show[{Plot3D[{2 x + 7 y}, {x, -2, 5}, {y, -2, 5}, AxesLabel -> {x, y, z}], 
     Graphics3D[{Thick, l}]}] 

Plot3D

8

只是炫耀: enter image description here

Manipulate[ 

Show[ 
    {Plot3D[ {1}, {x, -1, 1}, {y, -1, 1}, PlotRange -> {-1, 1}, Mesh -> False], 
    Plot3D[{-1}, {x, -1, 1}, {y, -1, 1},      Mesh -> False], 
    ParametricPlot3D[{{[email protected], [email protected], 1}, {[email protected], [email protected], -1}}, {t, 0, 2 Pi}], 
    Graphics3D[ 
    {Table[{Hue[n/10], Thick, Line[{{Re[#], Im[#], 1}, {-z Re[#], -z Im[#], z}}&@ 
     Exp[n 2 I Pi/10]]}, {n, 10}], 
    Sphere[{0, 0, 0}, .3]}]}], 
    {z, 1, -1}] 
+0

迪斯科迪斯科:)神学习一些参考资料工作! – Joelmob

+0

也许有一点'BoxRatios'会有一些好处。球体是一个平面... –

+0

@Sjoerd这是我内部的艺术家 –

7

我无法抗拒要么...

enter image description here

GraphicsGrid[ 
{ 
    {ContourPlot3D[x + 2 y + 3 z , {x, -2, 2}, {y, -2, 2}, {z, -2, 2}, 
    Contours -> {0}, Axes -> None, ColorFunction -> (White &), 
    Lighting -> "Neutral"], 
    Style["One plane", FontFamily -> "Comic Sans MS", 36, Bold]}, 
    {ContourPlot3D[x + 2 y + 3 z , {x, -2, 2}, {y, -2, 2}, {z, -2, 2}, 
    Contours -> {0, 5}, Axes -> None, ColorFunction -> (Green &), 
    Lighting -> "Neutral"], 
    Style["Two plane", FontFamily -> "Comic Sans MS", 36, Bold]}, 
    {ContourPlot3D[x + 2 y + 3 z , {x, -2, 2}, {y, -2, 2}, {z, -2, 2}, 
    Contours -> {0}, Axes -> None, ColorFunction -> (Red &), 
    Lighting -> "Neutral"], 
    Style["Red plane", FontFamily -> "Comic Sans MS", 36, Bold]}, 
    {Show[ 
    ContourPlot3D[x + 2 y + 3 z , {x, -2, 2}, {y, -2, 2}, {z, -2, 2}, 
    Contours -> {0}, Axes -> None, ColorFunction -> (Blue &), 
    Lighting -> "Neutral"], 
    Graphics3D[{Orange, Thickness[0.01], 
     Line[{{-2, -2, -2}, {2, 2, 2}}]}] 
    ], Style["Blue plane", FontFamily -> "Comic Sans MS", 36, Bold]} 
    } 
] 
+3

@David在你评论之前:我知道'飞机'的复数;-) –

+0

当然。顺便说一句,我赞赏提到Zeuss博士。 – DavidC

+0

@David对于那些不是苏斯博士开明的人,请参阅http://en.wikipedia.org/wiki/One_Fish_Two_Fish_Red_Fish_Blue_Fish –

相关问题