| Author |
Comment/Response |
Jeong-Mo Yang
|
04/30/01 10:29am
I want to plot the 3d implicit functions. So I found the ImplicitPlot3D.m package from mathesource.
I tried to plot the cone(the following formula), but mathematica view the hole around the origin{0,0,0}.
I want to have the connecting cone around the origin.
Please help.
The formular is x^2/a^2 + y^2/b^2 - z^2/c^2 =0 for a=b=c=1
ImplicitPlot3D[x^2 + y^2 - z^2 == 0, {x, -1, 1}, {y, -1, 1}, {z, -1, 1}, Axes -> True, Boxed -> True, PlotRange -> All, AxesOrigin -> {0, 0, 0}, PlotPoints -> 30, AxesLabel -> {x, y, z}]
URL: , |
|