A voxel (volumetric pixel) is a volume element, representing a value on a regular grid in three dimensional space.
1
vote
4answers
50 views
Walk a line between two points in a 3D voxel space visiting all cells
I have a line-of-sight problem I need to solve by visiting all possible cells in a 3D voxel space between two (non-grid-aligned) points.
I have considered using a 3D Bresenham algorithm, but it will ...
0
votes
0answers
21 views
Calculating voxel volume from PixelSpacing and SliceThickness in DICOM files
To calculate the physical volume of an isometric voxel, should you make a multiplication of the two values noted under the dicom tag PixelSpacing and the single value noted under the dicom tag ...
0
votes
1answer
66 views
Joomla 2.5 with Rocket Theme (RT) voxel template loads slowly for first time
I have developed Joomla site using RT voxel template and when pages loads for first time it takes 10 seconds and if i refresh then it loads with 2 seconds for next time in all browser.
What would be ...
1
vote
2answers
68 views
DX11 Dynamically sized buffer
I'm trying to make a deformable voxel terrain for a project for University. I'm currently using a number 3DTextures to hold my voxel data in "chunks". My plan was to use the compute shader to perform ...
1
vote
1answer
91 views
Threejs sprite ordering
I'm having an issue rendering sprites using Three.js, to complicate the issue further I'm using a game engine voxel.js to manage the instance.
Example: http://christopherdebeer.com/sandbox/voxeljs/
...
0
votes
0answers
127 views
Program Works Only After Running a Second Time
I have a strange problem where my program will only properly draw my OpenGL graphics after the second time I run it. From what I understand this has something to do with data being cached by Windows.
...
0
votes
0answers
70 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
1answer
59 views
Visual Studio 2012: LNK2028
Hey Guys I'm getting two errors and cannot figure out how to resolve, Here they are:
Error 1 error LNK2028: unresolved token (0A0003A0) "void __cdecl polygon(int,int,int,int,unsigned int)" ...
0
votes
0answers
91 views
Volume ray tracing and transparency
I am trying to learn something about volume ray tracing. I have implemented very simple ray tracer for voxel clouds. My voxel is axis-aligned cuboid with arbitrary sides, either completely opaque or ...
1
vote
1answer
80 views
Enlarging a cube and putting it into a 3D space
I've created a program to display a lined cube on a white canvas but I am unsure how to multiple that cube into lets say? 10 x 10.
Another question is how would I go about creating the same cube in a ...
0
votes
0answers
98 views
Voxelization of non-planar vertex-edge graph
I have a 3D graph described as a list of 3D vertices and a list of edges between them. To help you visualize what the input data looks like, the graph can easily be drawn in opengl using GL_LINES ...
10
votes
2answers
377 views
Voxel Cone Traced Soft Shadows
I have recently implemented soft shadows using voxel cone tracing in OpenGL 4.3 by tracing a cone in the direction of the light and accumulating opacity values.
The key thing that I am trying to ...
1
vote
2answers
212 views
OpenGL Texture White Line Gaps
As a side project I've had for a while now I've been trying to create some Voxel terrain. However, to my dismay the textures seems to not be working properly. I'm mapping the texture with GL_REPEAT ...
2
votes
2answers
121 views
Ogre collision detection on a grouped up mesh?
I am experimenting with creating a voxel based game and am rendering millions of cubes.
In order to speed up the rendering, I am grouping up the cubes into chunks that group 32x32x32 cubes into one ...
0
votes
1answer
89 views
Using triple int array
Okay, so i created an an int array like so int position = new int[160][250][160] to represent a possition in a 3D space ([x][y][z]) what i want to do is draw a line from one point to another, but am ...
1
vote
0answers
51 views
Chunk generation algorithm/code
So basically i'm trying to make a 'voxel world' Generator (I use the term voxel VERY losely, more of just a box). i've got so far as to make a createChunk(); method, it basically just uses the ...
2
votes
1answer
323 views
optimizing cubes rendering with geometry shader
In my first opengl 'voxel' project I'm using geometry shader to create cubes from gl_points and it works pretty well but I'm sure it can be done better. In the alpha color I'm passing info about which ...
1
vote
1answer
117 views
Proper way to create an untextured, colored cube in XNA?
I'm currently trying to convert this code to C# XNA, however I'm having an issue with converting the CreateCube method - the resources on creating vertex lists in XNA seem to be outdated, dead, or ...
-1
votes
1answer
276 views
3d Voxel Game made in Java [closed]
I know quite a bit of java I hava done all the java tutorials thenewboston has to offer link here: http://thenewboston.org/tutorials.php I have the the beginner intermediate and game development ...
0
votes
1answer
270 views
Voxel cone tracing directional light soft shadows
I'm currently trying to implement cone traced soft shadows as described in section 8.3.1 of this paper:
http://maverick.inria.fr/Membres/Cyril.Crassin/thesis/CCrassinThesis_EN_Web.pdf
I've got the ...
0
votes
2answers
183 views
Geometry shader voxelization wrong
Im trying to make a geometry shader (with shader maker) to legolize a model. First of all im trying to do a voxelization but the results are not good and i can't find what its wrong.
En the following ...
1
vote
0answers
238 views
webgl glsl emulate texture3d
I'm porting a piece of opengl to webgl and i'm trying to emulate texture3d. Somehow something is going wrong.
No interpolation is needed because it is only used for calculations. I'm not sure about ...
0
votes
0answers
62 views
How can I modelized a landscape/terrain in 3D knowing the coordinates (x, y, z) of each point ?
I am working on a project for school and after some days of intense researches, I am lost.
Here is the problem :
I have a DEM : a digital evelation model that consists of some files containing the ...
0
votes
0answers
126 views
plotting voxel image in R
Do you know if it exist libraries or functions in R to plot voxel objects (3D array)?
I found the package rgl that can perform 3d scatter plot, but I am really looking for an equivalent of the ...
3
votes
1answer
85 views
Efficient placement of boxes in a voxel environment
I have an arbitrary set of voxels that define a room for a game. My goal is to place various props (bound to the size of voxels) within this room according to specific rules for the prop. Some ...
0
votes
0answers
149 views
convert easily 3D raw data file to VTK file
I am beginning with VTK format because I would like to use it with XTK in order to make slice plot of 3D data (voxel).
I have currently an ascii file filled by a 3D data array (nx*ny*nz elements) ...
0
votes
1answer
231 views
Voxel Terrain in C# [closed]
I'm looking to create a simple voxel engine in C#. I know a lot of XNA but heard it would be better to do it in OpenGL / DirectX. Anybody know how I would accomplish such a thing? I do not want a ...
1
vote
1answer
101 views
Compiling a Library with Cmake
I'm trying to include PolyVox, a voxel library, into my project. However the library download does not supply you with precompiled headers and instead requires Cmake. This wouldn't be a huge problem, ...
0
votes
1answer
207 views
Issues with depth rendering in a XNA voxel engine
The last few days we worked on our voxel engine. We get to some depth rendering problems if we draw our cubes. See following Youtube-Video: http://youtu.be/lNDAqO7yHBQ
We already searched along this ...
1
vote
1answer
240 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 ...
0
votes
0answers
376 views
How do people render so many voxels at once?
I have actually 2 questions.
1) I see these renders of thousands of voxels, yet using an octree I can still get only about 500 voxels on the screen.
import warnings,sys
sys.setrecursionlimit(50000)
...
6
votes
3answers
293 views
Round Over the Edges of a 3 Dimensional Voxel World
Smoothing a Voxel World
My graphics application is written in C++ using OpenGL. It comes up with a 3 dimensional space where the terrain is out of voxel, so the world consists of cubes and looks ...
1
vote
0answers
141 views
SVO Rendering: OpenGL or Custom renderer?
I am planning on creating a Sparce Voxel Octree (SVO) Engine and am caught between using openGL to render each little cube or write my own renderer in assembly and c. If I was going to do the latter, ...
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 ...
1
vote
1answer
551 views
Best way to render a voxel animation using WebGL?
I would like to render an animated voxel scene using WebGL and Three.js,
for a hobby project (to visualize live point cloud data from a server-side stream).
the scene is not very huge - it should be ...
2
votes
1answer
526 views
In Python, how do I voxelize a 3D mesh
I need help on getting started in Python (which I almost know nothing of) to voxelize a 3D mesh generated from Rhino. The data input will be a .OBJ file and so will the output. The ultimate purpose ...
2
votes
1answer
560 views
3D voxel Display in matlab
I have a grid, it is 3D and it stores a number.
Here is an example of my grid if it is 2*2*2:
(:, :, 1) -> [0, 0;
0, 0]
(:, :, 2) -> [0, 0;
0, 0]
The number 0 ...
0
votes
1answer
2k views
Any good resource for a XNA voxel based terrain engine? [closed]
I've been working on my attempt of a game (XNA/C#) for a week now and now I'm that far to create a terrain. I'd most likely use a voxel based engine for this (similar to Minecraft), actually I've ...
0
votes
0answers
144 views
From Noise to Sparse Voxel Octree
I want to make a voxel game of my own. I'm wondering though. How do you go from Perlin noise to the SVO?
Like I know that you can give the Noise function a coordinate for each voxel and it gives you ...
0
votes
1answer
704 views
Procedural terrain generation
I am trying to make a 3-d java lwjgl game that stores the data in chunks and generates one chunk at a time as the player explores (infinite). How does the terrain blend between the chunks so that it ...
0
votes
1answer
699 views
Chunk Management In A Voxel Based Game
I am working on a java LWJGL game based on minecraft. I am working on the terrain management which is hard because the world can expand as you explore. How would you manage the terrain if it is stored ...
0
votes
2answers
152 views
How to get the Normal vectors for each valid pts?
float pts[N][4]={{x1,y1,z1,v1},{x2,y2,z2,v2},...,{xN,yN,zN,vN}};
//in viewsight(0,0)-(w,h);
//N==w*h
//if pts[n][3]==0 then pts[n] is invalid
How to evaluate the normal vectors for each valid pts?
...
1
vote
1answer
106 views
Create a neighbourhood graph from a list of voxels faster than in O(n^2)?
I'm currently creating a "neighbourhood graph" by doing roughly this:
for every voxel
look at every other unseen voxel
check if neighbours
which runs roughly in n squared (minus n). It is ...
2
votes
2answers
281 views
Flat, 3D triangle, made out of voxels
I have a problem that I can't seem to get a working algorithm for, I've been trying to days and get so close but yet so far.
I want to draw a triangle defined by 3 points (p0, p1, p2). This triangle ...
1
vote
1answer
216 views
3D voxel angled plane
I'm trying to draw a flat surface out of voxels, the goal is to draw it filled and I'm having a lot of trouble. Everything I try results in holes on the surface. The surface has 4 corners, but I'd ...
0
votes
0answers
100 views
How Would I Export An Octree Test If There is Geometry In That Space?
I am writing a voxel exporter for Blender3D, and I have set up the traditional octree system, where the octree is subdivided into its eight parts, then only the sections with geometry would be ...
0
votes
1answer
668 views
How to speed up sandbox lwjgl game?
I am trying to make a sandbox (Voxel), open-world game. My game uses 32x32x32 block sets called chunks to store block data, each of these has 4 VBOs: vertex, primary color, secondary color, texture ...
9
votes
2answers
1k views
Ray - Octree intersection algorithms
I'm looking for a good ray-octree intersection algorithm, which gives me the leafs the ray passes through in an iterative way. I'm planning on implementing it on the CPU, since I do not want to dive ...
1
vote
2answers
358 views
How to stop rendering invisible faces
I am making a voxel-based game, and for needs of it, i am creating a block rendering engine.
Point is, that i need to generate lots of cubes. Every time i render more than 16x16x16 chunk of theese ...
0
votes
1answer
673 views
How to create a chunk in 3D world? [closed]
i am working on voxel based game engine, in which i need to have chunks. I have tried to read a Chunk class from minecraft, but i cant understand it.
By chunk i mean: 16x16x256 array of blocks
So my ...



