Tagged Questions
The mesh tag has no wiki summary.
10
votes
2answers
379 views
Algorithm for labeling edges of a triangular mesh
Introduction
As part of a larger program (related to rendering of volumetric graphics), I have a small but tricky subproblem where an arbitrary (but finite) triangular 2D mesh needs to be labeled in ...
7
votes
5answers
190 views
Common algorithm question
Suppose we have some mesh (see the illustrating picture from CorelDraw, which uses the same technique in "Mesh fill" instrument).
Obviously this kind of mesh is represented by a set of points and ...
7
votes
4answers
2k views
How to map a point onto a warped grid
Say you have a collection of points with coordinates on a Cartesian coordinate system.
You want to plot another point, and you know its coordinates in the same Cartesian coordinate system.
...
7
votes
3answers
1k views
Decomposing a 3d mesh into a 2d net
Suppose you have a 3 dimensional object, represented as a 3d mesh in some common file format. How would you devise an algorithm to decompose the mesh into one or more 2d 'nets' - that is, a ...
7
votes
4answers
5k views
A Good 3D mesh library
I'm looking for a good 3D Mesh library
Should be able to read popular formats (OFF, OBJ...)
Should support both half-edge structure and a triangle soup
Should be tolerant to faults and illegal ...
6
votes
3answers
1k views
Algorithm for unique find edges from polygon mesh
I'm looking for a good algorithm that can give me the unique edges from a set of polygon data. In this case, the polygons are defined by two arrays. One array is the number of points per polygon, and ...
5
votes
2answers
6k views
Android OpenGL .OBJ file loader
There seem to be quite a number of OBJ mesh file loaders out there that people have developed for use on the Android platform. I'm wondering if anyone has any experience with these and can offer a ...
4
votes
3answers
146 views
Algorithm for generating a triangular mesh from a cloud of points
In some simulation program we generate object surfaces in terms of points, each point has 3D coordinates and the vector that represents the normal to the surface at that point. For visualization ...
4
votes
2answers
453 views
c# XNA low frame rate
Ok, I have 80,000 "Box" Mesh with simple textures
I have set a view distance and
only draw the ones you can see
which leave 600 to 1000 for the DrawModel function belowe
The problume is I only get 10 ...
4
votes
1answer
123 views
Remove occluded faces on a closed mesh
I need to remove some hidden faces that are inside a closed triangular mesh. I've found a way to do it using MeshLab, but there are two problems: 1) the article says that it could fail in some cases ...
4
votes
4answers
1k views
3D triangulation algorithm
Does anybody know what triangulation algorithm Maya uses? Lacking that, what would be the most probable algoritms to try? I tried a few simple off the top of my head (shortest/longest resulting edges, ...
4
votes
1answer
474 views
3D Sphereical Terrain with an 8 mesh sphere. The edges of the mesh are obvioulsy seen and I'm not sure why
I'm working in Unity3D, but my issue is with 3D meshes. I'm hoping someone here can help or point me in the right direction.
I have 2 version of code, http://www.pasteit4me.com/695002 (old) and ...
3
votes
0answers
141 views
Generating quadrilateral mesh from Mathematica surface mesh
I am trying to make a quadrilateral mesh from a surface mesh (which is mostly triangular) generated by Mathematica. I am not looking for high quality mesher but a simple work around algorithm. I use ...
3
votes
1answer
98 views
Question about BSpline
Here is a data file with cluster of 3D points. Now we can form a BSpline surface out of that.
dat=Import["C:\\Users\\Andy\\Desktop\\Foil.mat"];
surface=BSplineFunction[dat];
...
3
votes
1answer
101 views
what are good mesh animation techniques?
I want to create a 2D game with monsters build as a custom vertex mesh and a texture map. I want to use this mesh to provide smooth vector animations. I'm using opengl es 2.0.
For now the best idea i ...
3
votes
1answer
87 views
Spiked vertexes on generated Icosphere
I've been working on a program to generate an icosphere. (A sphere with evenly distributed vertexes across the face, to be used for terrain deformation)
I have pretty much everything done, the sphere ...
3
votes
2answers
70 views
Name for this distributed-database data-location optimization algorithm?
Say we have a large graph of databases connected to each other, effectively one giant distributed database. Any node on the graph can query the whole database by querying its neighbors recursively, ...
3
votes
4answers
127 views
What should be the out put of Delauny Mesh Triangulation algorithm for 3-Dimension?
If this are the input points:
to the Delauny Mesh Triangulation algorithm, then what will be output of Delauny Mesh Triangulation algorithm for 3-Dimension?
A. This one:
or B. This one ...
3
votes
6answers
397 views
How do I calculate a normal vector based on multiple triangles sharing a vertex?
If I have a mesh of triangles, how does one go about calculating the normals at each given vertex?
I understand how to find the normal of a single triangle. If I have triangles sharing vertices, I ...
3
votes
3answers
996 views
algorithm to find edges using vertices (2D and 3D) in a mesh
I have a a mesh, with certain types of elements (e.g. triangular, tetra). For each element I know all its vertices i.e. a triangular 2D element will have 3 vertices v1, v2 and v3 whose x,y,z coords ...
3
votes
4answers
404 views
Rendering large numbers of meshes (objects)
I have a project where I am looking to render a large number of meshes over a 16 square mile landscape. While the meshes are not all unique, there are a lot of them (Probably only 1000 meshes but ...
3
votes
2answers
2k views
A Read on Mesh Algorithm and Mesh Library
I am interested to read and understand the 2D mesh algorithms. A search on Google reveals a lot of papers and sources, however most are too academic and not much on beginner's side.
So, would anyone ...
2
votes
1answer
63 views
how to align two meshes
I have a very nice & tricky question for you.
I need to align two meshes using a very fast algorithm. Given mesh1 and mesh2 I want to find how I need to traslate and rotate mesh1 to be in the same ...
2
votes
4answers
77 views
Finding nearby triangles using the 3D pipeline?
Say you have a mesh. Consider one of the triangles. Say you want to know which triangles are nearby that triangle.
In fact:
Does OpenGL (or some other aspect of the 3D pipeline) "know" this ...
2
votes
2answers
130 views
Java ArrayList<GenericObject>.remove(GenericObject) returns false, but still decrements size of ArrayList
Here's some context:
I'm working on an assignment to collapse an edge in a mesh that is stored half-edge data structure. This is the immediately relevant code.
System.out.println("Initial Size: " ...
2
votes
4answers
88 views
Mesh to mesh intersections
I'm looking for a library or a paper that describes how to determine if one triangular mesh intersects another.
Interestingly I am coming up empty. If there is some way to do it in CGAL, it is ...
2
votes
1answer
98 views
MATLAB: Adjusting the dynamic range of a plot of logarithmic values
I have been unable to find anything close to this with Google, so I'm afraid that my question itself may be flawed... None the less, here goes:
I wish to display a matrix of values (Z) at various ...
2
votes
1answer
79 views
Are there mesh building helper classes in WPF or .NET 4.0?
The mechanisms for building a mesh in WPF are quite low-level. For example you have to supply the vertexes and the indexes. Are there helpers in the WPF or anywhere in the .NET 4.0 framework I can ...
2
votes
0answers
24 views
GDF or SIF or RDF conversion to obj or collada
Are there any libraries for converting GDF or SIF or RDF to obj or collada?
2
votes
1answer
162 views
How does WoW handle the graphics of armor swapping?
I've been trying to figure this out for .. forever and I while i've gotten my head around a good deal of it .. there are a few things I just can't seem to grasp.
First, do they merge textures ...
2
votes
2answers
201 views
Sort a set of 3-D points in clockwise/counter-clockwise order
In 3-D space I have an unordered set of, say, 6 points; something like this:
(A)*
(C)*
(E)*
(F)*
(B)*
(D)*
The ...
2
votes
1answer
82 views
how to create infinite /continous mesh in OpenGL?
I was thinking how to crate the infinite three mesh as seen in this game ?
http://www.youtube.com/watch?v=wjDp21_X0SU
Is it a one big mesh or dynamically generate as the game progress ?
2
votes
2answers
380 views
Binding Multiple Textures to One Mesh in OpenGL ES 1.1
If I have a mesh (such as a cube with 6 faces, each consisting individually of 4 vertices, totaling 24 vertices) and I want to apply a different texture to each face, how would I do this? Currently I ...
2
votes
2answers
104 views
Unwrap a 3D fingerprint (convert to 2D)
I need to unwrap a 3D fingerprint (convert to 2D). I cannot just remove z coordinate and make it 2D. I need to unwrap it in a manner that it resembles as if the fingerprint would have been scanned as ...
2
votes
1answer
196 views
C implementation of winged-edge structure?
I'm implementing an algorithm in which I need manipulate a mesh, adding and deleting edges quickly and iterating quickly over the edges adjacent to a vertex in CCW or CW order. The winged-edge ...
2
votes
0answers
164 views
NS2: How to simulate nodes running two different mac protocols in a single network?
I want to modify the existing routing protocol and to simulate how well does it work on a network with two different types of nodes, cars with 802.11p and AP on the roadside with 802.3.
Does anyone ...
2
votes
1answer
480 views
How to compute projections of 3D meshes in matlab
I'm trying to compute 2d projections of a 3d mesh from different views using matlab.
The solution I m using now, is to plot the 3d mesh, rotate it, and make a screenshot.
I would like to know if ...
2
votes
2answers
536 views
Nurbs Programming tutorial
where can i find some good tutorials on programming nurbs meshes. Google keeps sending me to modeling software tutorials.
2
votes
1answer
388 views
2
votes
0answers
134 views
Quadrilateral Meshing Library
I am trying to find a meshing library written in C# to mesh custom shapes using quadrilateral meshes only.
Here is an example of the algorithm/Code I’m looking for. But this isn’t free and written in ...
2
votes
1answer
85 views
modelling 3d cells defined by intersections of surfaces
I'm trying to create an interactive 3d representation of cells that are defined by the intersection of arbitrary surfaces. I'm having a hard time figuring out how to create a mesh from this (or is ...
2
votes
1answer
596 views
How to generate half-edge structure representation for a polygonal mesh?
I would like to generate output to display the numeric data of the Half-Edge Structure that is based from an input of polygonal mesh data (in numeric data form).
The concept to read the polygonal ...
2
votes
3answers
558 views
Algorithm to produce rounded edges and corners in a 3D mesh
Starting with a 3D mesh, how would you give a rounded appearance to the edges and corners between the polygons of that mesh?
Without wishing to discourage other approaches, here's how I'm currently ...
2
votes
1answer
91 views
Live Mesh has screwed up my file permissions
I got the bright idea of using Live Mesh to sync up my development directories between my laptop and desktop machines. It appears that the permission on any new files that are added through Live Mesh ...
2
votes
3answers
990 views
Mesh triangulation and simplification C++ library
I am looking for a C++ library to triangulate and simplify 3D mesh. My 3D meshes are potentially huge (around 3 millions vertices). It should ideally be open source. Any idea?
Best regards.
K.
2
votes
1answer
198 views
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 ...
2
votes
3answers
642 views
Cutting a Mesh in Half - DirectX
I am trying to cut a mesh in half or at least be able to delete faces from it in real-time.
How to go about doing this i wonder?
Lock the vertex buffers, memset the selected face or vertex to 0, does ...
2
votes
6answers
1k views
Mesh Generation in MATLAB
Is there any subroutine, in MATLAB, that takes in a list of points, and return me a good mesh that I can use to show to my colleagues, such as this?
Actually, all I need is just a simple 2D mesh ...
2
votes
1answer
252 views
How to calculate a grid based on 4 curved edges?
How can I calculate the points on a 2D grid where the the edges are 4 curved beziers?
(see picture):
2
votes
2answers
542 views
Triangular mesh topology
I've got a triangular mesh class which contains a list of nodes (2d in my case but that shouldn't matter) and a list of faces. Each face is a triangle and it only contains the indices into the node ...