Questions tagged [graphics3d]
For questions specific to the Graphics3D command and related 3D graphics functionality.
2,328 questions
1 vote
1 answer
59 views
Drawing a curved Tube through three given points [duplicate]
I need to draw a curved Tube through three given points. For example, points = {{1, 0, 0}, {0, 1, 1}, {-1, -1, 0}} I found that ...
2 votes
1 answer
107 views
Performance issue when more than one texture is used
I run it on version 13.0.1. Bellow are 50 polygons each of the same random texture. Rotating it by mouse is fast and flawless. <...
1 vote
1 answer
123 views
VertexTextureCoordinates of Cube[]
Copy code from here: Documentation of cube. Or the following (should be the same). ...
1 vote
1 answer
90 views
“How to Fix Degenerate Polygons in BoundaryMeshRegion When Sweeping a 2D Rotor Profile in 3D”
I am generating a 3D rotor model by sweeping a 2D profile around the z-axis while applying a variable lead translation. The goal is to create a smooth helical solid based on rotor geometry and a lead ...
2 votes
1 answer
124 views
Suspected bug: Setting `Boxed->False` hides text in 3D graphics. What's going on?
Mathematica 13.2. I was helping a student with 3D graphics. She prefers the axes to originate from a single point, so I draw them as arrows, put labels on them, and then ...
2 votes
2 answers
95 views
Adding multiple texts to different locations in Graphics3D
I am trying to add multiple texts to geometric objects (points in my example below). However, when I try a table inside the Graphics3D command it puts all texts at ...
6 votes
3 answers
455 views
Turning Goldberg Graphs/Skeletons into Goldberg Polyhedrons (possibly skew)
I want to be able to turn the 1-skeletons from the Goldberg Graphs into polyhedrons. An example is to turn this tetrahedral goldberg graph on the left into the polyhedron on the right: which was ...
2 votes
2 answers
130 views
How to avoid gaps when *filling* a 3D plot of a piecewise defined function? [duplicate]
Options like Filling, FillingStyle and Opacity do wonders to 3D plots I use in my class. The alternative would be to build a 3D object from several surfaces one by one. But, today I ran into a problem,...