Skip to main content

Questions tagged [meshing]

A mesh is, by definition, a set of points and cells, when connected to form a network. This network can have many forms of geometry and topology, as will be discussed later. Often, meshes are also called grids, and that is generally related to the intrinsic organization of the mesh and/or when those meshes are related to Finite Differences problems.

Filter by
Sorted by
Tagged with
0 votes
1 answer
63 views

I need to determine if a 3D volume triangular surface mesh (STL) represents a watertight volume or not. If I use python trimesh module it tells me if it is or it is not, but it does not tell why. It ...
zuheyr alsalihi's user avatar
0 votes
1 answer
67 views

I am currently working on the strain energy function for a particular graph. The paper I am currently referencing is "Spatial Relations Preserving Character Motion Adaptation". I am asking ...
장민규's user avatar
4 votes
1 answer
190 views

In a triangle 2-manifold mesh, or symplicial complex (but I'll stick with the former terminology) the discrete gaussian curvature is usually defined $$ K(v_i) = \frac{1}{A(i)}\left(2\pi - \sum_{(v_i,...
user8469759's user avatar
  • 5,731
0 votes
0 answers
68 views

I'm testing a surface mesh generator that takes a function $f:\mathbb{R}^3 \rightarrow \mathbb{R}$ and builds the surface described implicitly by $f(x,y,z)=0$. I already tested with a torus, a ball ...
bobinthebox's user avatar
2 votes
1 answer
348 views

I have an open, three-dimensional mesh that looks similar to the one drawn here (in that it contains no volume). I am using ORS Dragonfly, an image processing software, to visualize this mesh and have ...
Esper's user avatar
  • 21
2 votes
0 answers
75 views

I need to design a mesh for Finite Element Method around the junction of two hollow cylinders. Here is an example of mesh geometry: https://i.sstatic.net/V0hVX.png. I've found how to generate a mesh ...
mikrymar's user avatar
0 votes
0 answers
72 views

I got the following 2D subdivision mask (which is used to subdivide a given quad-mesh): $$ M = \frac{1}{8} \begin{bmatrix} 1 & 2 & 1\\ 3 & 6 & 3\\ 3 & 6 & 3\\ 1 & 2 & 1\...
Siminho's user avatar
3 votes
1 answer
993 views

I am looking for an efficient way to determine the intersection point of two lines which go through a triangle (face) of a 3D triangular surface mesh. For both lines I know the two points at which ...
Fab's user avatar
  • 33
0 votes
1 answer
409 views

I have a hard time finding information about and understanding how a matrix (adjacency matrix) is connected to a grid used in numerical analysis. What would the nodes be and are the matrix weighted or ...
The dickmaster's user avatar
0 votes
1 answer
194 views

I'm meshing a sphere and am solving a physics problem on this. What I want to show is that the error in the model scales like$$ \varepsilon = \epsilon^p, $$ where $\epsilon$ is the "error" in the ...
User123456789's user avatar
0 votes
1 answer
194 views

I recently heard about mesh parameterization as a way of parameterizing the geometry of an arbitrary mesh by mapping it onto a surface, like a sphere. I am not a mathematician, so I don't know how to ...
myselfesteem's user avatar
0 votes
1 answer
161 views

I am looking to derive a conformal map for the problem illustrated in this image. I've read a bit about how to map a square onto a circle, but I'm struggling to extend the concepts for the domain at ...
niran90's user avatar
  • 497
0 votes
1 answer
401 views

I am trying to compare the two heuristics below for calculating vertex normals in a triangular mesh: the weighted average of face normals of the faces incident to the vertex where the weights are the ...
Hadi GhahremanNezhad's user avatar
2 votes
2 answers
295 views

Looking at the diagrams on Wikipedia here and here: In 2D: Clearly every triangle in the Delaunay mesh (black lines) does not have to contain a node of the Voronoi diagram (red points) (it can contain ...
smörkex's user avatar
  • 659
0 votes
0 answers
153 views

Given a triangulation of a sphere (coming from the convex hull of some points on that sphere), I need to get to a graph with these points as the vertices, where each vertex is connected by edges to ...
DPKR's user avatar
  • 211
1 vote
1 answer
261 views

I have a plane equation given by a point and a normal vector, for example. This plane has to lay between $xyz$ limits, $300<x<2700$, $150<y<1350$, $130<z<1370$. I want to know the ...
ibabinaca's user avatar