Wireframe of a Hexahedron using Graphics3D?
up vote
3
down vote
favorite
Are there options in Graphics3D
that would allow me to set the face color of a Hexahedron
to None
or make the faces transparent?
I did try FaceForm
. But this may not work with Graphics3D
primitives (or I am using it incorrectly).
I have the following code:
hexCoordinates = {{-12.5, -10,-6},{-12.5,10,6},{12.5,10,6},12.5,-10,6},{-6.5,-4,0}, {-6.5,4,0},{6.5,4,0},{6.5,-4,0}};
hexShape := Hexahedron[hexCoordinates];
Graphics3D[hexShape, Axes->True, FaceGrids->All, ImageSize->Full, Lighting->{{"Ambient",None}}]
graphics3d
add a comment |
up vote
3
down vote
favorite
Are there options in Graphics3D
that would allow me to set the face color of a Hexahedron
to None
or make the faces transparent?
I did try FaceForm
. But this may not work with Graphics3D
primitives (or I am using it incorrectly).
I have the following code:
hexCoordinates = {{-12.5, -10,-6},{-12.5,10,6},{12.5,10,6},12.5,-10,6},{-6.5,-4,0}, {-6.5,4,0},{6.5,4,0},{6.5,-4,0}};
hexShape := Hexahedron[hexCoordinates];
Graphics3D[hexShape, Axes->True, FaceGrids->All, ImageSize->Full, Lighting->{{"Ambient",None}}]
graphics3d
Quit the kernel and run the code from this question. Then fix the code and update the question. Also, what did you try with FaceForm? It seems to work:Graphics3D[{FaceForm@None, Hexahedron}]
.
– Kuba♦
13 hours ago
Thanks for the catch. I tried FaceForm in the options list but received an error: "An improperly formatted option was encountered while reading a Graphics".
– Doug Kimzey
12 hours ago
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
Are there options in Graphics3D
that would allow me to set the face color of a Hexahedron
to None
or make the faces transparent?
I did try FaceForm
. But this may not work with Graphics3D
primitives (or I am using it incorrectly).
I have the following code:
hexCoordinates = {{-12.5, -10,-6},{-12.5,10,6},{12.5,10,6},12.5,-10,6},{-6.5,-4,0}, {-6.5,4,0},{6.5,4,0},{6.5,-4,0}};
hexShape := Hexahedron[hexCoordinates];
Graphics3D[hexShape, Axes->True, FaceGrids->All, ImageSize->Full, Lighting->{{"Ambient",None}}]
graphics3d
Are there options in Graphics3D
that would allow me to set the face color of a Hexahedron
to None
or make the faces transparent?
I did try FaceForm
. But this may not work with Graphics3D
primitives (or I am using it incorrectly).
I have the following code:
hexCoordinates = {{-12.5, -10,-6},{-12.5,10,6},{12.5,10,6},12.5,-10,6},{-6.5,-4,0}, {-6.5,4,0},{6.5,4,0},{6.5,-4,0}};
hexShape := Hexahedron[hexCoordinates];
Graphics3D[hexShape, Axes->True, FaceGrids->All, ImageSize->Full, Lighting->{{"Ambient",None}}]
graphics3d
graphics3d
edited 12 hours ago
asked 13 hours ago
Doug Kimzey
902615
902615
Quit the kernel and run the code from this question. Then fix the code and update the question. Also, what did you try with FaceForm? It seems to work:Graphics3D[{FaceForm@None, Hexahedron}]
.
– Kuba♦
13 hours ago
Thanks for the catch. I tried FaceForm in the options list but received an error: "An improperly formatted option was encountered while reading a Graphics".
– Doug Kimzey
12 hours ago
add a comment |
Quit the kernel and run the code from this question. Then fix the code and update the question. Also, what did you try with FaceForm? It seems to work:Graphics3D[{FaceForm@None, Hexahedron}]
.
– Kuba♦
13 hours ago
Thanks for the catch. I tried FaceForm in the options list but received an error: "An improperly formatted option was encountered while reading a Graphics".
– Doug Kimzey
12 hours ago
Quit the kernel and run the code from this question. Then fix the code and update the question. Also, what did you try with FaceForm? It seems to work:
Graphics3D[{FaceForm@None, Hexahedron}]
.– Kuba♦
13 hours ago
Quit the kernel and run the code from this question. Then fix the code and update the question. Also, what did you try with FaceForm? It seems to work:
Graphics3D[{FaceForm@None, Hexahedron}]
.– Kuba♦
13 hours ago
Thanks for the catch. I tried FaceForm in the options list but received an error: "An improperly formatted option was encountered while reading a Graphics".
– Doug Kimzey
12 hours ago
Thanks for the catch. I tried FaceForm in the options list but received an error: "An improperly formatted option was encountered while reading a Graphics".
– Doug Kimzey
12 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
5
down vote
accepted
I gues the solution is FaceForm
.
Graphics3D[{
{Ball[{1, 1, 1}/2, 1/5]},
{FaceForm, EdgeForm[{Thick, Blue}], Hexahedron}
},
FaceGrids -> All,
Axes -> True,
Boxed -> False
]
This works if you don't need FaceGrids->All. It looks like FaceForm causes FaceGrids and Axes to be ignored. I am wondering if there is a way to have FaceForms with Axes->True and FaceGrids->All.
– Doug Kimzey
12 hours ago
@DougKimzey I don't get interference between theFaceGrids
andFaceForm
directives: i.stack.imgur.com/8Cdv0.png
– Jason B.
11 hours ago
@DougKimzey are you sure you are following syntax from documentation? E.g. how did you end up with FaceForm in options in the first place. Now, what is the code you are descirbing above?
– Kuba♦
11 hours ago
If I use: Graphics3D[hexShape, FaceForm, Axes->True, FaceGrids->All], the axes and grids appear but the hexahedron is solid. An error message appears: "An improperly formatted option was encountered..." If I use Graphics3D[{{hexShape, FaceForm, Axes->True, FaceGrids->All}}] FaceForm, Axes and FaceGrids are ignored.
– Doug Kimzey
11 hours ago
1
@DougKimzey yes. take a look at graphics3d docs. Options should be outside of{}
.
– Kuba♦
11 hours ago
|
show 3 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
accepted
I gues the solution is FaceForm
.
Graphics3D[{
{Ball[{1, 1, 1}/2, 1/5]},
{FaceForm, EdgeForm[{Thick, Blue}], Hexahedron}
},
FaceGrids -> All,
Axes -> True,
Boxed -> False
]
This works if you don't need FaceGrids->All. It looks like FaceForm causes FaceGrids and Axes to be ignored. I am wondering if there is a way to have FaceForms with Axes->True and FaceGrids->All.
– Doug Kimzey
12 hours ago
@DougKimzey I don't get interference between theFaceGrids
andFaceForm
directives: i.stack.imgur.com/8Cdv0.png
– Jason B.
11 hours ago
@DougKimzey are you sure you are following syntax from documentation? E.g. how did you end up with FaceForm in options in the first place. Now, what is the code you are descirbing above?
– Kuba♦
11 hours ago
If I use: Graphics3D[hexShape, FaceForm, Axes->True, FaceGrids->All], the axes and grids appear but the hexahedron is solid. An error message appears: "An improperly formatted option was encountered..." If I use Graphics3D[{{hexShape, FaceForm, Axes->True, FaceGrids->All}}] FaceForm, Axes and FaceGrids are ignored.
– Doug Kimzey
11 hours ago
1
@DougKimzey yes. take a look at graphics3d docs. Options should be outside of{}
.
– Kuba♦
11 hours ago
|
show 3 more comments
up vote
5
down vote
accepted
I gues the solution is FaceForm
.
Graphics3D[{
{Ball[{1, 1, 1}/2, 1/5]},
{FaceForm, EdgeForm[{Thick, Blue}], Hexahedron}
},
FaceGrids -> All,
Axes -> True,
Boxed -> False
]
This works if you don't need FaceGrids->All. It looks like FaceForm causes FaceGrids and Axes to be ignored. I am wondering if there is a way to have FaceForms with Axes->True and FaceGrids->All.
– Doug Kimzey
12 hours ago
@DougKimzey I don't get interference between theFaceGrids
andFaceForm
directives: i.stack.imgur.com/8Cdv0.png
– Jason B.
11 hours ago
@DougKimzey are you sure you are following syntax from documentation? E.g. how did you end up with FaceForm in options in the first place. Now, what is the code you are descirbing above?
– Kuba♦
11 hours ago
If I use: Graphics3D[hexShape, FaceForm, Axes->True, FaceGrids->All], the axes and grids appear but the hexahedron is solid. An error message appears: "An improperly formatted option was encountered..." If I use Graphics3D[{{hexShape, FaceForm, Axes->True, FaceGrids->All}}] FaceForm, Axes and FaceGrids are ignored.
– Doug Kimzey
11 hours ago
1
@DougKimzey yes. take a look at graphics3d docs. Options should be outside of{}
.
– Kuba♦
11 hours ago
|
show 3 more comments
up vote
5
down vote
accepted
up vote
5
down vote
accepted
I gues the solution is FaceForm
.
Graphics3D[{
{Ball[{1, 1, 1}/2, 1/5]},
{FaceForm, EdgeForm[{Thick, Blue}], Hexahedron}
},
FaceGrids -> All,
Axes -> True,
Boxed -> False
]
I gues the solution is FaceForm
.
Graphics3D[{
{Ball[{1, 1, 1}/2, 1/5]},
{FaceForm, EdgeForm[{Thick, Blue}], Hexahedron}
},
FaceGrids -> All,
Axes -> True,
Boxed -> False
]
edited 11 hours ago
answered 12 hours ago
Pinti
3,1891833
3,1891833
This works if you don't need FaceGrids->All. It looks like FaceForm causes FaceGrids and Axes to be ignored. I am wondering if there is a way to have FaceForms with Axes->True and FaceGrids->All.
– Doug Kimzey
12 hours ago
@DougKimzey I don't get interference between theFaceGrids
andFaceForm
directives: i.stack.imgur.com/8Cdv0.png
– Jason B.
11 hours ago
@DougKimzey are you sure you are following syntax from documentation? E.g. how did you end up with FaceForm in options in the first place. Now, what is the code you are descirbing above?
– Kuba♦
11 hours ago
If I use: Graphics3D[hexShape, FaceForm, Axes->True, FaceGrids->All], the axes and grids appear but the hexahedron is solid. An error message appears: "An improperly formatted option was encountered..." If I use Graphics3D[{{hexShape, FaceForm, Axes->True, FaceGrids->All}}] FaceForm, Axes and FaceGrids are ignored.
– Doug Kimzey
11 hours ago
1
@DougKimzey yes. take a look at graphics3d docs. Options should be outside of{}
.
– Kuba♦
11 hours ago
|
show 3 more comments
This works if you don't need FaceGrids->All. It looks like FaceForm causes FaceGrids and Axes to be ignored. I am wondering if there is a way to have FaceForms with Axes->True and FaceGrids->All.
– Doug Kimzey
12 hours ago
@DougKimzey I don't get interference between theFaceGrids
andFaceForm
directives: i.stack.imgur.com/8Cdv0.png
– Jason B.
11 hours ago
@DougKimzey are you sure you are following syntax from documentation? E.g. how did you end up with FaceForm in options in the first place. Now, what is the code you are descirbing above?
– Kuba♦
11 hours ago
If I use: Graphics3D[hexShape, FaceForm, Axes->True, FaceGrids->All], the axes and grids appear but the hexahedron is solid. An error message appears: "An improperly formatted option was encountered..." If I use Graphics3D[{{hexShape, FaceForm, Axes->True, FaceGrids->All}}] FaceForm, Axes and FaceGrids are ignored.
– Doug Kimzey
11 hours ago
1
@DougKimzey yes. take a look at graphics3d docs. Options should be outside of{}
.
– Kuba♦
11 hours ago
This works if you don't need FaceGrids->All. It looks like FaceForm causes FaceGrids and Axes to be ignored. I am wondering if there is a way to have FaceForms with Axes->True and FaceGrids->All.
– Doug Kimzey
12 hours ago
This works if you don't need FaceGrids->All. It looks like FaceForm causes FaceGrids and Axes to be ignored. I am wondering if there is a way to have FaceForms with Axes->True and FaceGrids->All.
– Doug Kimzey
12 hours ago
@DougKimzey I don't get interference between the
FaceGrids
and FaceForm
directives: i.stack.imgur.com/8Cdv0.png– Jason B.
11 hours ago
@DougKimzey I don't get interference between the
FaceGrids
and FaceForm
directives: i.stack.imgur.com/8Cdv0.png– Jason B.
11 hours ago
@DougKimzey are you sure you are following syntax from documentation? E.g. how did you end up with FaceForm in options in the first place. Now, what is the code you are descirbing above?
– Kuba♦
11 hours ago
@DougKimzey are you sure you are following syntax from documentation? E.g. how did you end up with FaceForm in options in the first place. Now, what is the code you are descirbing above?
– Kuba♦
11 hours ago
If I use: Graphics3D[hexShape, FaceForm, Axes->True, FaceGrids->All], the axes and grids appear but the hexahedron is solid. An error message appears: "An improperly formatted option was encountered..." If I use Graphics3D[{{hexShape, FaceForm, Axes->True, FaceGrids->All}}] FaceForm, Axes and FaceGrids are ignored.
– Doug Kimzey
11 hours ago
If I use: Graphics3D[hexShape, FaceForm, Axes->True, FaceGrids->All], the axes and grids appear but the hexahedron is solid. An error message appears: "An improperly formatted option was encountered..." If I use Graphics3D[{{hexShape, FaceForm, Axes->True, FaceGrids->All}}] FaceForm, Axes and FaceGrids are ignored.
– Doug Kimzey
11 hours ago
1
1
@DougKimzey yes. take a look at graphics3d docs. Options should be outside of
{}
.– Kuba♦
11 hours ago
@DougKimzey yes. take a look at graphics3d docs. Options should be outside of
{}
.– Kuba♦
11 hours ago
|
show 3 more comments
Thanks for contributing an answer to Mathematica Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f187700%2fwireframe-of-a-hexahedron-using-graphics3d%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Quit the kernel and run the code from this question. Then fix the code and update the question. Also, what did you try with FaceForm? It seems to work:
Graphics3D[{FaceForm@None, Hexahedron}]
.– Kuba♦
13 hours ago
Thanks for the catch. I tried FaceForm in the options list but received an error: "An improperly formatted option was encountered while reading a Graphics".
– Doug Kimzey
12 hours ago