The voxels tag has no wiki summary.
0
votes
1answer
92 views
Which library for voxel data structure?
I'm working in C++ with large voxel grids in a scientific context and I'm trying to decide, which library to use. Only a fraction of the voxel grid holds values - but might be several per voxel (e.g. ...
0
votes
0answers
117 views
Mesh merging in basic 'voxel' engine
So i finished what is now basically a block renderer, i got it so that it will read from a Perlin Noise generator and create a 'map' based off of the seed you give it, my only problem now is that ...
2
votes
2answers
164 views
Generating a Sphere with Voxel
I have been playing around with voxeljs, I'm new to 3D programming, and it says in the doc that this code generates the "sphere world":
generate: function(x,y,z) {
return x*x+y*y+z*z <= 20*20 ? ...
0
votes
1answer
77 views
voxels inside a 3D convexhull
I have a cubic matrix of voxels of value 1 (the rest is zero). I need a matrix of the same size where the voxels INSIDE the convex hull are all of value 1. I seen a similar example here and adapted ...
1
vote
1answer
242 views
Obtaining a unique buffer index for multiple threads accessing a voxel
I'm trying to implement a portion of "Octree-Based Sparse Voxelization for Real-Time Global Illumination".
Basically just the voxelization, which I am already done with.
And the "Voxel-fragment ...
2
votes
0answers
161 views
Voxelization of a Scene with Instanced Objects
I have created a simple scene in directx11 that has a plane as a floor, with several spheres, cubes and rectangular walls. There is only 3 objects loaded: a plane, cube and sphere; but the cube and ...
0
votes
0answers
83 views
Is it possible to convert terrain rendering algorithm from flipcode to “full 3d” renderer?
I found this (http://www.flipcode.com/voxtut/) example of terrain rendering algorithm based on voxel technology and converted it to "full 3d" renderer. I mean, that in heightmap there is only one ...
0
votes
1answer
429 views
Using noise to generate marching cube terrain?
I've succesfully made a marching cubes class in C# XNA and am using Lib noise to generate 3d perlin noise, but when I tried to generate terrain using the values of the perlin noise as the densities ...
4
votes
2answers
4k views
Voxel Engine and Optimization
Recently I've started developing voxel engine. What I need is only colorful voxels without texture, but at very large amount (much smaller than minecraft) - and the question is how to draw the scene ...
5
votes
6answers
4k views
Voxels… Honestly, I need to know where to begin
Okay, i understand that voxels are just basically a volumetric version of a pixel.
After that, I have no idea what to even look for.
Googling doesn't show any tutorials, I can't find a book on it ...
1
vote
0answers
161 views
Converting meshes to metaballs
I'm doing a project where I need to convert an existing polygonal mesh into a static shape made from metaballs (blobs). I have voxelized the mesh with binvox to "a .raw file" (according to the ...
3
votes
2answers
381 views
Get list of visible voxels in a grid
I'm working on a Minecraft-style game, and I need a way to reduce the amount of the world rendered. Currently, I'm using a naive, render-everything approach, which is having obvious scaling problems. ...
0
votes
2answers
602 views
Dynamic Terrain Deformation
I am interested in designing a very simple game (just for learning purposes I have no grand plans). I want to have a deformable terrain system (think Minecraft) but something a little more complex.
I ...
1
vote
1answer
200 views
Areas of research related to algorithms operating on volume data [closed]
I am writing a masters thesis and would like some input from people who are knowledgeable about one or more of these fields: AI, computer vision, volume graphics, segmentation (3D), feature ...
5
votes
2answers
1k views
Voxel 3d “grid”
What in your opinions, would be the best language to create a large (massive..) 3d voxel based grid in?
i.e. like Minecraft (http://www.minecraft.net/)
I note that Minecraft was created in Java, ...
2
votes
1answer
1k views
vtk java voxel rendering
Hi Guys,
does anyone knows, why this code in Java compiles,
but an Error appears:
"An unrecoverable stack overflow has occurred.
#
# A fatal error has been detected by the Java Runtime Environment:
...
3
votes
8answers
840 views
How to quickly count the number of neighboring voxels?
I have got a 3D grid (voxels), where some of the voxels are filled, and some are not. The 3D grid is sparsely filled, so I have got a set filledVoxels with coordinates (x, y, z) of the filled voxels. ...
20
votes
7answers
14k views
what are sparse voxel octrees?
I have reading a lot about the potential use of sparse voxel octrees in future graphics engines.
However I have been unable to find technical information on them.
I understand what a voxel is, ...
