Wireframe of a Hexahedron using Graphics3D?











up vote
2
down vote

favorite
1












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}}]









share|improve this question
























  • 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
    3 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
    3 hours ago















up vote
2
down vote

favorite
1












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}}]









share|improve this question
























  • 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
    3 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
    3 hours ago













up vote
2
down vote

favorite
1









up vote
2
down vote

favorite
1






1





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}}]









share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 3 hours ago

























asked 3 hours ago









Doug Kimzey

897615




897615












  • 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
    3 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
    3 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
    3 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
    3 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
3 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
3 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
3 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
3 hours ago










1 Answer
1






active

oldest

votes

















up vote
4
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
]


boxWithFaceGrids






share|improve this answer























  • 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
    2 hours ago










  • @DougKimzey I don't get interference between the FaceGrids and FaceForm directives: i.stack.imgur.com/8Cdv0.png
    – Jason B.
    2 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
    2 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
    2 hours ago








  • 1




    @DougKimzey yes. take a look at graphics3d docs. Options should be outside of {}.
    – Kuba
    2 hours ago











Your Answer





StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
4
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
]


boxWithFaceGrids






share|improve this answer























  • 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
    2 hours ago










  • @DougKimzey I don't get interference between the FaceGrids and FaceForm directives: i.stack.imgur.com/8Cdv0.png
    – Jason B.
    2 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
    2 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
    2 hours ago








  • 1




    @DougKimzey yes. take a look at graphics3d docs. Options should be outside of {}.
    – Kuba
    2 hours ago















up vote
4
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
]


boxWithFaceGrids






share|improve this answer























  • 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
    2 hours ago










  • @DougKimzey I don't get interference between the FaceGrids and FaceForm directives: i.stack.imgur.com/8Cdv0.png
    – Jason B.
    2 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
    2 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
    2 hours ago








  • 1




    @DougKimzey yes. take a look at graphics3d docs. Options should be outside of {}.
    – Kuba
    2 hours ago













up vote
4
down vote



accepted







up vote
4
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
]


boxWithFaceGrids






share|improve this answer














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
]


boxWithFaceGrids







share|improve this answer














share|improve this answer



share|improve this answer








edited 2 hours ago

























answered 3 hours ago









Pinti

3,1791833




3,1791833












  • 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
    2 hours ago










  • @DougKimzey I don't get interference between the FaceGrids and FaceForm directives: i.stack.imgur.com/8Cdv0.png
    – Jason B.
    2 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
    2 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
    2 hours ago








  • 1




    @DougKimzey yes. take a look at graphics3d docs. Options should be outside of {}.
    – Kuba
    2 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
    2 hours ago










  • @DougKimzey I don't get interference between the FaceGrids and FaceForm directives: i.stack.imgur.com/8Cdv0.png
    – Jason B.
    2 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
    2 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
    2 hours ago








  • 1




    @DougKimzey yes. take a look at graphics3d docs. Options should be outside of {}.
    – Kuba
    2 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
2 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
2 hours ago












@DougKimzey I don't get interference between the FaceGrids and FaceForm directives: i.stack.imgur.com/8Cdv0.png
– Jason B.
2 hours ago




@DougKimzey I don't get interference between the FaceGrids and FaceForm directives: i.stack.imgur.com/8Cdv0.png
– Jason B.
2 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
2 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
2 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
2 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
2 hours ago






1




1




@DougKimzey yes. take a look at graphics3d docs. Options should be outside of {}.
– Kuba
2 hours ago




@DougKimzey yes. take a look at graphics3d docs. Options should be outside of {}.
– Kuba
2 hours ago


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

Mangá

 ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕