Group Abstract Group Abstract

Message Boards Message Boards

0
|
3.2K Views
|
3 Replies
|
1 Total Like
View groups...
Share
Share this post:

How to create empty solid figures?

Posted 5 years ago

I have tried to use Mathematica functions like Thetraedron[p1, p2, p3, p4] or similar solid figures (printable using Graphics3D[]). After I compiled:

Graphics3D[Tetrahedron[{{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {0, 0, 1}}], 

I obtained a filled Thetraedron,not useful for a solid geometry problem figure. What style element should I use to view the 4 vertices polygon empty? Thank you!

POSTED BY: AOPS Viewer
3 Replies
Posted 5 years ago

Hi AOPS,

Do you mean this?

Graphics3D[{
  FaceForm[None],
  EdgeForm[Thick],
  Tetrahedron[{{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {0, 0, 1}}]},
 Boxed -> False]
POSTED BY: Rohit Namjoshi
Posted 5 years ago

Try

a={0,0,0};b={1,0,0};c={0,1,0};d={0,0,1};
Graphics3D[Line[{a,b,c,a,d,b,c,d}],Boxed->False]
POSTED BY: Bill Nelson
Posted 5 years ago

Yes, thanks!

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