Tagged Questions
The polyhedra tag has no wiki summary.
3
votes
3answers
465 views
How do I break a polyhedron into tetrahedra in MATLAB?
I have a polyhedron, with a list of vertices (v) and surfaces (s). How do I break this polyhedron into a series of tetrahedra?
I would particularly like to know if there are any built-in MATLAB ...
1
vote
1answer
100 views
Determining if a point is inside a polyhedron
I'm attempting to determine if a specific point lies inside a polyhedron. In my current implementation, the method I'm working on take the point we're looking for an array of the faces of the ...
1
vote
2answers
124 views
Point in polyhedron test in linear time
Assume we have a 3D polyhedron which has N vertices.
How do you test if a point is inside in time O(n).
There is supposed to be a linear algorithm, my searches were, however, unsuccessful.
1
vote
1answer
306 views
Exact Medial Axis, Surfaces, Skeletonizations of 3D Polyhedra
I am interested in finding software to compute the exact medial axis (or your term of choice!) of a 3D polyhedra. I imagine the output would be a list of triangular faces, possibly edges, and ...
1
vote
2answers
728 views
OpenGL Icosahedron Texture Mapping
I've got currently no solution for texture mapping an icosahedron without a seam from pole to pole. The texture mapping of this primitive seems to be a common problem, which is not completly solved ...
1
vote
2answers
235 views
Projecting points from 4d-space into 3d-space in Mathematica
Suppose we have a set of points with the restriction that for each point all coordinates are non-negative, and the sum of coordinates is equal to 1. This restricts points to lie in a 3-dimensional ...
1
vote
3answers
604 views
Using JavaScript to model 3D polyhedra
Is there a JavaScript library that models 3D polyhedra using the canvas tag or SVG? Say I wanted to produce renderings of the Platonic solids, how would I best achieve this? FWIW, I'm only concerned ...