English 中文(简体)
Mesh Grid Simplification
原标题:

I have a few 1000s triangles connected in a 2D mesh grid. It represents water flow. This grid is a delaunay triangulation. I need to merge the triangles back into a minimal amount of simple polygons such that each polygon is constraint not to have interior holes. The output polygons should be the same shape.

Is there a known algorithm for accomplishing this?

最佳回答

answering my own question :)

I found the best way to do this is to use polygon union methods similar to disjoint subset merging. Here s a blog post on a fast implementation by taking advantage of spatial indices

http://lin-ear-th-inking.blogspot.com/2007/11/fast-polygon-merging-in-jts-using.html

问题回答

暂无回答




相关问题
Windows manager like mesh.com

I would like to create a basic webdesktop in silverlight 4. How can I do a windows manager ? I want to move, resize, minimized, maximized each windows like http://mesh.com... Does it exist something ...

How to color a mesh with values at the vertices in WPF 3D?

We ve got a sphere which we want to display in 3D and color given a function that depends on spherical coordinates. The sphere was triangulated using a regular grid in (theta, phi), but this produced ...

Mesh smoothing with Gaussian

I wish to smooth a given 3D mesh, which uses the Half-Edge structure to store adjacency information, using a Gaussian function. The following is the algorithm that was proposed: Smooth the mesh by ...

Mesh Grid Simplification

I have a few 1000s triangles connected in a 2D mesh grid. It represents water flow. This grid is a delaunay triangulation. I need to merge the triangles back into a minimal amount of simple polygons ...

Issue with animated .x files and multiple materials

I ve been trying to export skinned and animated .x models with multiple materials on the same mesh but have found the skinning breaks when that happens. The animations work fine but the mesh stops ...

3D Surface normal extractor

I have a 3D closed mesh object that has 3D 65.000 position coordinates. For lighting purposes, I need a 3D surface normal extractor. Could you help me to have it. Thanks. Richard

热门标签