Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
453 views

CSG operations on implicit surfaces with marching cubes

I render isosurfaces with marching cubes, (or perhaps marching squares as this is 2D) and I want to do set operations like set difference, intersection and union. I thought this was easy to implement, ...
4
votes
2answers
215 views

Marching Cubes, voxels, need a bit of suggestions

Marching Cubes, voxels, need a bit of help. I'm trying to construct a proper destructible terrain, just for research purposes. Well, everything went fine, but resolution is not satisfying me enough. ...
3
votes
4answers
598 views

OpenGL, applying texture from image to isosurface

I have a program in which I need to apply a 2-dimensional texture (simple image) to a surface generated using the marching-cubes algorithm. I have access to the geometry and can add texture ...
2
votes
1answer
236 views

Contour of 2d point clouds

I have scattered point clouds in 2d. My problem is I would like to get the boundary's point to get the contour of the point clouds. I know about this 'marching square' howver this algorithm usually ...
2
votes
2answers
263 views

Marching cubes?

I have an object made of points, lets say its point cloud, i want to render object from those points, i want object to look like those points were wrapped in a sheet of paper. I want to animate it, so ...
2
votes
1answer
210 views

Would like help finding resources to generate 3d metaballs using opengl

I'm looking to work with OpenGl and C++ to generate a procedural real-time metaball animation. Can anyone suggest a good resource/tutorial for generating metaballs, and/or implementing the marching ...
1
vote
1answer
127 views

Sorting of vertices after intersection of 3d isosurface with plane

Here is another geometric problem: I have created an 3-dimensional triangulated iso-surface of a point cloud using the marching cubes algorithm. Then I intersect this iso-surface with a plane and get ...
1
vote
1answer
197 views

Marching squares and encapsulated contours

Here's an image: Can one, using the marching squares algorithm, write a program that given an input image like above, produces the following output: Two chained line segments, one forming the ...
1
vote
1answer
397 views

help: how to smooth a mesh generated by Marching Cubes in real-time?‏

I'm now using the marching cubes algorithm for a project (real-time rendering of human teeth from CT images). Here is the rendering result: http://www.freeimagehosting.net/uploads/4c2e2c94be.jpg You ...
0
votes
1answer
22 views

Proper density functions for Voxel-based terrains?

I've managed to implement the Marching Cubes algorithm in C#. Up to now I've tried the algorithm to render a sphere. That's an easy one because the density function is not very complex to code. But ...
0
votes
3answers
87 views

A good example code of how to implement Marching Cubes?

Currently I am trying to implement the marching cubes algorithm in my project. It uses Unity 3 and C#. But I need to find a proper implementation example to truly understand its inner working. I ...
0
votes
1answer
246 views

open source marching cubes algorithm in c++?

i am trying to use marching cubes to visualize molecular densities and i was wondering if there was a place on the web that has a open source libraries to do this. i have seen many people post their ...
0
votes
0answers
277 views

marching cubes is not giving good results [closed]

I'm working on a project ( c# ) using the marching cubes algorithm, and my problem is that i have a result but it's not realy good (i'm talking about the 3D shape), and i'm asking if there is some one ...
0
votes
2answers
1k views

How to speed up marching cubes?

I'm using this marching cube algorithm to draw 3D isosurfaces (ported into C#, outputting MeshGeomtry3Ds, but otherwise the same). The resulting surfaces look great, but are taking a long time to ...