Message Boards Message Boards

0
|
5442 Views
|
6 Replies
|
8 Total Likes
View groups...
Share
Share this post:

Show surfaces in wireframe mode?

Posted 4 years ago

I am new to Mathematica and have not found a simple way to display surfaces in wireframe mode. They all show with faces filled in. Is there some property I can set in functions like ParametricPlot3D?

POSTED BY: Max K Agoston
6 Replies

How about this:

ParametricPlot3D[{Cos[u], Sin[u] + Cos[v], Sin[v]}, {u, 0, 
  2 \[Pi]}, {v, -\[Pi], \[Pi]}, PlotStyle -> None, 
 MeshFunctions -> {#4 & , #5 & }, Mesh -> 50, Boxed -> False, 
 Axes -> False]
POSTED BY: Gianluca Gorni

Or is this better?

ParametricPlot3D[{Cos[u], Sin[u] + Cos[v], Sin[v]}, {u, 0, 2 \[Pi]}, {v, -\[Pi], \[Pi]}, 
 MeshStyle -> {{Thick, Red}, {Thick, Blue}}, PlotStyle -> Opacity[0]]
POSTED BY: Hans Dolhaine

What about this?

ParametricPlot3D[
 {Cos[u], Sin[u] + Cos[v], Sin[v]}, {u, 0, 
  2 \[Pi]}, {v, -\[Pi], \[Pi]},
 MeshStyle -> Thick,
 PlotStyle -> Opacity[0]]
POSTED BY: Hans Dolhaine
Posted 4 years ago

Thanks, Vitaliy. I think PlotStyle/MeshFunctions are exactly what I was looking for. I actually also wanted vertical subdivision lines but I'll play around with your suggestion.

POSTED BY: Max K Agoston

Something like this?

ParametricPlot3D[
{Cos[u], Sin[u] + Cos[v], Sin[v]}, {u, 0, 2 \[Pi]}, {v, -\[Pi], \[Pi]}, 
PlotStyle -> None, MeshFunctions -> {#3 &}]

enter image description here

POSTED BY: Vitaliy Kaurov
Posted 4 years ago

Having fun with Mark k's parametric plot also

Having trouble wit re posts and editing. here is an update

POSTED BY: Roger Wells
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract