vote up 3 vote down star
1

Hi,

Given: A 3d mesh defined with a set of vertices and triangles building up the mesh with these points.

Problem: Find the 2d outline of the projected arbitrarily rotated mesh on an arbitrary plane.

The projection is easy. The challenge lies in finding the "hull" of the projected triangle edges in the plane. I need some help with input/pointers on researching this algorithm. For simplicity, we can assume the 3d edges are projected straight down onto the xy plane.

Cheers

Edit: Added some pics for illustration

First image displays the projected edges in green with the convex hull in blue. The red lines in the second picture are the edges I'm hunting for :)

alt text alt text

flag

The blue line doesn't look convex here. – Svante Jun 18 at 22:47
Yeah you're right. I quickly stole that image from a site and draw some red lines on it to illustrate. I still hope that the idea came through :) – Magnus Skog Jun 19 at 1:02

4 Answers

vote up 3 vote down check
  • Start with the rightmost point (the point with the biggest x coordinate)
  • Get all edges from this point
  • Follow the edge with the smallest angle to the positive x-axis, and also add it to the solution set
  • From the point reached, follow and add the edge with the smallest angle to the edge you came from
  • Repeat until you reach the original point
link|flag
What happens if you project a torus on to the x-y plane? This won't get the interior "hole". – nsanders Jun 19 at 16:38
What if there are two edges both equal to the smallest angle? – Richard Inglis Jun 21 at 19:33
Hmm... Take the shorter of the two. – Richard Inglis Jun 21 at 19:37
No, measure the angle only in one direction, e.g. anti-clockwise. – Svante Jun 22 at 0:25
vote up 2 vote down

The alpha shapes technique mentioned in this question handles a general set of points where the vertex connections are not known:

http://stackoverflow.com/questions/83593/is-there-an-efficient-algorithm-to-generate-a-2d-concave-hull/83780#83780

However, since you already know "face" information which can be preserved through the projection, it is probably not the best approach.

A brute force algorithm might feasible, especially if spatial sorting structures where used. eg for each facet:

  1. Project facet on to the plane
  2. Check if projected facet is completely enclosed by existing geometry, if yes: done (no need to expand projected silhouette)
  3. If points fall outside the existing geometry, do triangle-triangle intersections to determine which portions fall outside, build an arbitrary n-gon (possibly concave) to fill the missing space, then chop the n-gon in to triangles

Another idea, depending on the fidelity you require, is just shoot a bunch of rays normal from your projection plane to your original geometry. Create a 2d hit/miss and use that to determine your extents.

link|flag
vote up 0 vote down

Is it simply a matter of projecting the xyz points into x'Y' points on the arbitrary plane and then just doing a convex hull in those coordinates?

link|flag
As I replied to nsanders before he rewrote his answer. As you can see on the second image, the red edges doesn't necessarily form a convex set. – Magnus Skog Jun 18 at 18:44
1  
So the question is really just find the boundary edges of a mesh? Pick a midpoint on each line and do a number of edges crossed - point in polygon test with all the other triangles. – Martin Beckett Jun 18 at 19:29
vote up 1 vote down

I only see answers for convex solutions, so here is mine for non-convex. (It was a little confusing what was the intention.)

Take all edges from your 2D-triangles and group them. If two edges share both endpoints, they are in the same group. All groups, with only one edge, is then a part of the shell.

Finally you can combine the shell-edges to one ring, by joining them together.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.