Tagged Questions
The voxel tag has no wiki summary.
5
votes
2answers
131 views
Regular expression on voxel space
Is there a way to loosely describe an object (via pattern matching finite automata, for example) in 3d voxel grid in the same way we can loosely describe patterns in one-dimensional string with ...
5
votes
1answer
2k views
Is there a java-library for rendering with a voxel-engine?
I'm interested if there are libraries in java, that render voxel-based sceneries? Open-Source is preferred, as always.
4
votes
4answers
4k views
OpenGL voxel engine slow
I'm making a voxel engine in C++ and OpenGL (à la Minecraft) and can't get decent fps on my 3GHz with ATI X1600... I'm all out of ideas.
When I have about 12000 cubes on the screen it falls to under ...
4
votes
2answers
657 views
Converting a 3D model to a voxel field
I need to write some code to convert an array of quads into a voxel field.
Making it work should be easy, but making it fast won't be so trivial.
Does anyone know of any libs or source code that I ...
2
votes
1answer
50 views
Player to voxel collision detection/response
I have a big array of voxels, a la Minecraft. The player/enemies are in this grid. I have no idea how to go about doing this type of collision detection. Note, this is NOT dynamic movable object vs. ...
2
votes
1answer
106 views
What is the best way to handle 3d voxel data?
At the moment I am storing voxels in a simple list. ([0,0,0,0,0,1,0,0,1 ... ])
To retrieve voxel positon in the list I use this function:
def getBlockKey(self, x, y, z):
blockX = x % ...
2
votes
2answers
384 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 ...
2
votes
2answers
334 views
Sparse Voxel Octrees
I'm looking for all materials, books that will allow me to build simplest voxel rendering engine oparating on sparse voxel octrees. I will probabbly be using python or more likely javascript so lots ...
2
votes
2answers
158 views
Is voxel rendering a form of volume rendering?
When reading about volume rendering, I see voxel rendering is mentioned a lot. I know volume data have voxels, but are the two terms interchangeable, or are they completely different?
2
votes
1answer
189 views
Method for finding normals to a voxel surface
I was working on a method to approximate the normal to a surface of a 3d voxel image.
The method suggested in this article (only algorithm I found via Google) seems to work. The suggested method ...
2
votes
1answer
446 views
Basic Dual Contouring Theory
I've been searching on google, but cannot find anything basic. In it's most basic form, how is dual contouring (for a voxel terrain) implememted? I know what it does, and why, but cannot understand ...
2
votes
2answers
580 views
Ray voxel intersection
I want to test for an intersection of a ray with a voxel field.
I could naively crawl through the voxel field by calculating a ray-box intersection with the edge of the current voxel, then doing the ...
2
votes
1answer
742 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:
...
2
votes
1answer
550 views
Given an octree of voxels, how do you render with smooth surfaces?
I noticed most 3d voxel models are actually pretty low resolution, but then are rendered all smoothed out with some sort of interpolation.
Given its ray traced, what is the algorithm used to render ...
1
vote
1answer
20 views
How can I hide certain faces of a cube model In XNA for a Voxel Engine to optimize it?
Hello I'm trying to make a terrain engine similar to that of Minecraft.
I was able to get a chunk loaded. It is very laggy and when there is more than one chunk loaded at once it becomes unplayable.
...
1
vote
1answer
194 views
Increasing performance in Voxel Engine
As I have mentioned in a few previous posts I am creating a minecraft like engine thing.
I have seperated the terrain into regions, and only the regions which are in the camera's viewing frustum are ...
1
vote
3answers
194 views
Know any voxel graphics C++ libraries?
So, I'm looking for a voxel graphic engine with C++ libraries (game oriented). Just for fun, it would be the first time I use a graphic library, so it doesn't have to be very complex or powerful, just ...
1
vote
0answers
89 views
How do you actually MAKE an octree(for voxels)?
I have seen code that creates an octree, adds and remove data from them, but how does one actually build the octree? Is there 3d voxel software that will save to an array of some sort that can then be ...
1
vote
2answers
105 views
How can I squeeze an additional 10 FPS out of my [primitive] voxel algorithm?
So, I made this simple 4dof voxel algorithm in JavaScript, and I feel quite proud of myself, but I don't have near enough time to debug and I've lost several days worth of sleep, however I notice that ...
0
votes
0answers
26 views
Confused about vtkImageData + vtkMarchingCubes
First my final goal: given a point cloud, downsample it, and visualize the resultings voxels (i.e. 1 if containing any point, 0 otherwise) in an efficient way, using Python-VTK. I already succeeded in ...
0
votes
1answer
33 views
Converting a 3D array to a 3D model
I'm trying to find a type of software that I could use to convert a 3D Java array to a 3D voxel model. I'm developing a voxel terrain generator in Java and I need some way to visualize the ...
0
votes
1answer
62 views
Concerning Octrees
I am creating a Minecraft like terrain engine thing, and I was wondering what exactly octrees are. With my engine I have seperated each part of it into chunks or regions - which from what I have read ...
0
votes
0answers
60 views
How does the rawvox file format work?
How does the rawvox file format work? It's a file format used for voxel (volumetric pixel) data in voxel models (in software like 3D Coat).
The problem is not exactly the format, but rather the ...
0
votes
1answer
83 views
Triangulating a set of voxels
I haven't done much research on this yet, but i'm just asking around in case this has been done before.
Here's my problem:
I have a set of cubes of an arbitrary height, width and depth. These are ...
0
votes
1answer
124 views
Looking for SLAB6 implementation
I'm looking to implement SLAB6 into my raycaster, especially the kv6 support for voxelmodels. However the SLAB6 source by Ken Silverman is totally unreadably (mostly ASM) so I was hoping someone could ...
0
votes
1answer
632 views
Raycasting Voxels and OpenGL
I'm currently looking into raycasting and voxels, which is a nice combination. A Voxelrenderer by Sebastian Scholz implements this pretty nicely, but also uses OpenGL. I'm wondering how his formula is ...
0
votes
1answer
45 views
Smoothing out blocks
So I'm looking to get some general information here, but I'm not sure where to start. I'm thinking of exploring real-time terrain deformation (by which I mean hardcore deformation like digging holes ...
0
votes
0answers
459 views
What is the theory behind a voxel heightmap?
I'm, trying to write a voxel heightmap script. What's the best way to go about it? How can I accomplish this? In C#, preferably.