A polygon mesh or unstructured grid is a collection of vertices, edges and faces that defines the shape of a polyhedral object in 3D computer graphics and solid modeling.
4
votes
0answers
58 views
Minimal surface solution in Python
I have a set of 3D points defining a 3D contour. What I want to do is to obtain the minimal surface representation corresponding to this contour (see Minimal Surfaces in Wikipedia). Basically this ...
0
votes
0answers
16 views
No Geometry OBJLoader three.js?
Does the OBJLoader not return an object with geometry?
I want to merge a loaded model into an existing.
My code looks like this:
var loader = new THREE.OBJLoader();
loader.addEventListener( 'load', ...
0
votes
0answers
19 views
How to create a shadow for an already created Mesh in Java using Jogl
I already create a mesh which represents a flag in java using jogl. I will appreciate any advice's on how i can create a shadow for the flag/mesh. I already research about it and i couldn't find any ...
0
votes
1answer
32 views
How to set up UVs for Texture borders
I'm generating a plane that is able to scale without the edges of the texture being affected pixel wise. The plane needs to be able to keep its border proportion but be able to stretch to almost any ...
0
votes
0answers
12 views
The mesh contains self intersecting faces after mesh smoothing
all
I obtain an triangle mesh after the reconstruction process. To remove the noise, I try to smooth the mesh.
Some triangles appear dark in MeshLab after the smoothing operation. The smoothing ...
1
vote
1answer
21 views
ShapeRenderer Transformations Interfering with Mesh Transformations in LibGDX
I'm working on a game with a lot of rotational transformations and I'm running into a problem with something that seems pretty simple - I assume I'm doing something wrong.
I draw a triangle with a ...
1
vote
2answers
30 views
.mesh file “ref” var explanation
I am trying to understand the .mesh files, usually generated for mesh visualization with Medit.
The documentation is here, but it is in french.
The thing I understand is that after every line ...
1
vote
1answer
61 views
C++ DirectX - texturing a 2D mesh
In DirectX I've been working with textured quads using the following struct:
struct TLVERTEX
{
float x;
float y;
float z;
D3DCOLOR colour;
float u;
float v;
};
However I ...
1
vote
1answer
21 views
How to limit x-axis of 3D animated mesh in MATLAB
I have an animated 3D mesh of a sine wave, but i want to limit all my axis to specific ranges.
Here is a piece my code:
[x,t] = meshgrid(x,t);
j=1;
while 1
j=j+1;
y = ...
0
votes
1answer
56 views
How to animate this 3D plot in Matlab?
My current code :
a=7
f=10
T=1/f;
v=40
wl=v/f;
x1=1;
x2=30
step=0.01
t=x1:step:x2;
x=x1:step:x2;
y=a*sind(2*pi*f*(t+(x*T)/wl));
h=plot3(x,y,t);
set(h,'EraseMode','xor','MarkerSize',20)
...
0
votes
0answers
32 views
Making a Face of a 3D Mesh Face “Up” in Blender (Python)
I have been struggling with this for a couple weeks now. How can I get a selected face of an object to point "up"? Is there a built in function to make this simple? Will I have to take more math ...
0
votes
1answer
52 views
C# Direct X 9.0c - Mesh Intersect
I want to get a Collide Vector of a Mesh using a Up-Vector.
I have a position and a Up Vector.. with this booth i calculate the far vector
public Vector3 SetPlayerToGround(Matrix Object, Matrix ...
0
votes
0answers
16 views
Delaunay triangulation of texture to vertex color
I've read article about very good usage of vertex colors. It describes a technique to convert bitmap to a tessellated sphere with vertex colors to be used as a skybox. Here is a link: ...
3
votes
2answers
111 views
How to find out whether a triangle mesh is concave or not?
Given a three dimensional triangle mesh, how can I find out whether it is convex or concave? Is there an algorithm to check that? If so it would be useful to define a tolerance range to ignore small ...
0
votes
2answers
70 views
C# Managed DirectX - How can i rotate a Mesh to any Vector?
I want to write a Funktion where i can rotete a Mesh to a Point in 3D Space.
But i cant find any Examples for my Solution.
It should look like the following Code:
public void RotateMesh(Vector3 ...
0
votes
1answer
55 views
How to align a face to a position in world space?
I have a mathematical problem. Let's say I have a face (with 3 or 4 vertices) at some world position. I want to translate/rotate the mesh so that the face is "facing" up and is centered (0,y,0). What ...
0
votes
1answer
40 views
Maya: Create temporary MFnMEsh for smooth export
Im writing an exporter that exports the subdivision preview mesh via the 'generateSmoothMesh()' method like this:
MFnMesh mesh(mesh_dag_path);
MFnMesh subdiv_mesh(mesh.generateSmoothMesh());
but ...
0
votes
2answers
67 views
Unity 4 Character Mesh Collider not aligned - character falls through. Image attached inc source unity asset link
Hello Peeps (first post yay).
I have just started to learn about unity and still going through various tutorials and learning the interface along with C#.
I am running Unity 4 and downloaded a free ...
0
votes
0answers
10 views
Physijs, BoxMesh : the property “properties”
I created a BoxMesh :
var cube = new Physijs.BoxMesh(new THREE.CubeGeometry(500, 10, 500), cube_material);
I want to add specific properties to the BoxMesh. Can I use the property "properties" of ...
0
votes
0answers
47 views
raycasting with kinect how far is image from camera?
I generated a mesh with kinect fusion, I would like to texture my mesh using raycasting.
But in order for this to work I need three things:
Mesh position (Done)
camera/eye position (Done)
...
1
vote
1answer
46 views
Mesh function seems to swap x and y values
I am trying to plot a very simple function in the 3d plane.
f=zeros(101,101);
xs=0:0.1:10;
ys=0:0.1:10;
for j=1:101
f(1,j)=ys(j);
end
Here are 3 plots:
The first is a plot of f vs x at ...
0
votes
1answer
38 views
Retrieving mesh points of a CAD object
I would like to implement functionality that would allow me to export (mesh) points of the surface of a CAD object into a file.
I have had a look at some CAD applications but can't find any that ...
0
votes
1answer
84 views
saving CGAL alpha shape surface mesh
I have never used CGAL and have got almost no C/C++ experience. But following
Google I have however managed to compile the example "Alpha_shapes_3"
(\CGAL-4.1-beta1\examples\Alpha_shapes_3) on a ...
0
votes
0answers
51 views
Get all the points of a geosphere in Matlab
I have created a geosphere, and now I want to be able to choose a slice and see the circle drawn in that slice by the geopshere. the problem is that only the coincident vertices's in that slice are ...
0
votes
0answers
52 views
How to generate 3D mesh of real terrain?
I'm looking for a best method and tools to generate 3D mesh of some real terrain. Road and roadside to be exact - length up to 10km and width no more than 120m. I'd need to get as a result a mesh ...
4
votes
2answers
151 views
How can I create a triangulated sphere using 'isosurface' function of MATLAB
How can I create a Triangulated sphere with faces of triangles with the same area each one.
I want something like this,
http://imageshack.us/a/img198/5041/71183923.png
and I searched and saw I ...
0
votes
1answer
74 views
Drawing 3D points in Matlab and connect them in order via line
I have an array that contains 3D float points. Not only I want to depict them in a figure but also I want to connect them with lines.
Example) lets say we have array called X:
X=[0, 0, 0; 0.48, ...
1
vote
0answers
37 views
Is there a python library capable of calculating the dual of a 3D mesh?
I looked into python-graph and the python bindings for the boost graph library but did not find anything relevant regarding the dual-ization of meshes (the vertices of the dual are the faces of the ...
0
votes
3answers
39 views
Simple program to display 3D mesh?
for a university project I have to compute a 3D mesh, then display it.
By mesh I mean a list of triangles, where each point has a specific elevation.
What is the easiest tool that exists both on ...
0
votes
0answers
16 views
Change Mesh Position in blender [closed]
I am working in blender. I have no such experience.Might be its a silly problem but i couldn't find its solution. My problem is ..When i do some change in my armature in the edit mode and then i shift ...
0
votes
1answer
41 views
AMQP exchange to exchange mesh architecture
Is it possible to create a mesh architecture between servers using exchange to exchange binding with AMQP?
A practical example being a chat relay system that has multiple exit nodes/exchanges across ...
0
votes
0answers
55 views
DirectX 9 Mesh.DrawSubset not working as expected
I'm trying to implement texture tiling in managed DirectX 9 (I know!) so that I can use multiple textures to cover a single large mesh. I'm using Mesh.SetAttributeTable to try to define which sections ...
0
votes
0answers
38 views
access violation exception computenormals directx
i an using slimdx to create a mesh on my c# project but when i call computenormals i get en access violation exception.trying to read or wirte in protected memory
the error is sent on ...
0
votes
0answers
23 views
Is there a way to make the point density in one mesh uniform in Mesh?
all
I have one mesh with nonuniform point distribution. Some triangles are very large and some are small. I'd like to make point density almost uniform. Currently I am using MeshLab and try various ...
0
votes
0answers
56 views
Grid on custom geometry mesh
I was makin' custom geometry mesh using example: http://mrdoob.github.com/three.js/examples/webgl_geometry_shapes.html
but, there is a grid inside mesh and figured out it's normal for that kind of ...
0
votes
0answers
69 views
Mapping of 3d point to face of Platonic (Archimedian) Solid
I want to compute the resulting surface mesh of platonic (or maybe archimedian) solids applied with a displacement map for each face. The mesh should show fine details of the displacement map and be ...
0
votes
0answers
54 views
Iterating over edges and getting their vertices with OpenMesh
I am starting to use OpenMesh to go through meshes which may have wholes and am wondering what is the good way to actually retrieve the vertices associated with each edge.
For half-edges, there are ...
3
votes
1answer
110 views
Mobius strip has a seam! Java3D
I'm creating a mobius strip in Java3D. I've got a seam and I can't seem to get rid of it! I'm assuming it's got to do with normals and the fact that the difference in angle between the conjoined ...
0
votes
0answers
13 views
openmesh EdgeHandle class
So I'm using the OpenMesh library for a project and I'm passed in an EdgeHandle e to a method. Is it possible to see what two faces are joined by this edge? I tried looking online but the ...
0
votes
0answers
72 views
A user friendly interface for Ternary Diagram (C++ and C#)
Does anybody know how to public a user friendly interface or code. I have just developed an interface to plot ternary diagrams. I know there are softwares that can do the same but with this one users ...
2
votes
0answers
106 views
Create a tetrahedral mesh from a closed triangular mesh
I'm looking for an algorithm (or implementation) to create a tetrahedral mesh from a closed (i.e. without holes) 3D triangular mesh.
The best solution would be an open source application that can ...
2
votes
3answers
168 views
ZigBee Mesh VS DigiMesh
Which is better, ZigBee Mesh (Series 2) or DigiMesh (Series 1)?
I have already read Wireless Mesh Networking, ZigBee vs. DigiMesh (PDF format), but I noted there are many advantages using DigiMesh, ...
0
votes
1answer
44 views
Sampling points in a vector
I have a vector _pts that contains values for (x,y,z), i.e. a point in 3D. Starting with _pts[0], I want to select those points whose distance between previously selected points is bigger than ...
1
vote
1answer
268 views
three.js - THREE.MeshFaceMaterial update textures on cube
Using r54:
cube and on each side a different texture.
var materials = [new THREE.MeshBasicMaterial({map: textureSmallSide}),
new THREE.MeshBasicMaterial({map: textureSmallSide}),
...
0
votes
1answer
53 views
Why is my mesh only displayed every second frame?
I'm trying to draw a single triangle on-screen using SharpDX (DX11). For whatever reason, the triangle only seems to be drawn every second frame. My device initialization code looks like this:
public ...
1
vote
0answers
170 views
Low polygon cone - smooth shading at the tip
If you subdivide a cylinder into an 8-sided prism, calculating vertex normals based on their position ("smooth shading"), it looks pretty good.
If you subdivide a cone into an 8-sided pyramid, ...
0
votes
0answers
103 views
How to draw a shadow in DirectX?
Hello everyone,
In the picture above you can see a part of my application. The Application is able to load a file with details about the spheres and to draw them. Now I want to show a shadow at the ...
0
votes
3answers
88 views
glscalef effect on normal vectors
So I have a .3ds mesh that I imported into my project and it's quite large so I wanted to scale it down in size using glscalef. However the rendering algorithm I use in my shader makes use of normal ...
1
vote
2answers
77 views
Location of imported 3D models
So whenever I load a 3D model (.3ds, .obj, etc) into my openGL program, they either get placed in a seemingly random location or they're oriented in a not-ideal position. Is there an easy way to make ...
1
vote
2answers
126 views
Calculate Hausdorff distance between two meshes
i am trying to find the deviation between two meshes. For e.g. the difference between two sets of points defined in 3d space, and i plan to visualise the distance using some 3d visualisation tool for ...




