Tagged Questions

3D computer graphics (in contrast to 2D computer graphics) are graphics that use a three-dimensional representation of geometric data (often Cartesian) that is stored in the computer for the purposes of performing calculations and rendering 6D images. Such images may be stored for viewing later or ...

learn more… | top users | synonyms

34
votes
13answers
4k views

Getting started with OpenGL

As you can see here I'm about to start work on a 3d project for class. Do you have any useful resources/websites/tips/etc. on someone getting started with OpenGL for the first time? The project will ...
23
votes
10answers
1k views

3D modeling for programmers

I'm studying Computer Graphics as part of my curriculum at my university. The course focuses on scene modeling, rather than rendering or other aspects of computer graphics. We're learning the math ...
14
votes
4answers
349 views

Why are there always triangles used in a 3D engine?

Why are there always triangles used by drawing surfaces in 3D? And not squares or other shapes?
13
votes
1answer
620 views

How to rotate image with 3D effect?

I want to rotate the .gif image with 3D effect in iPhone application,can anyone help me to provide the sample code or any direction is also appreciated.
13
votes
5answers
2k views

Learning game programming (part 2) (math)

So, it's been a few months since I wrote this question, since then I've toyed with "raw" C++ D3D, The Ogre and Irrlicht graphics engines and lately Microsoft XNA. I've built a few 2D games (mostly ...
13
votes
4answers
5k views

Most Common 3D Model Format?

It's been about two years since I last developed games, and I am interested in starting a new project. What is the most common open-source 3D model format? I am looking for a format that would ...
12
votes
2answers
356 views

How to change points and add a regression to a cloudplot (using R)?

To make clear what I'm asking I've created an easy example. Step one is to create some data: gender <- factor(rep(c(1, 2), c(43, 41)), levels = c(1, 2),labels = c("male", "female")) numberofdrugs ...
11
votes
3answers
175 views

Using 3D engine output as input to streaming video

The idea of doing remote rendering (typically for a video game) which is streamed to a client device is conceptually quite simple, barring obvious issues like lag for an interactive fast-paced game. ...
11
votes
7answers
10k views

Calculating a LookAt matrix

I'm in the midst of writing a 3d engine and I've come across the LookAt algorithm described in the DirectX documentation: zaxis = normal(At - Eye) xaxis = normal(cross(Up, zaxis)) yaxis = ...
10
votes
1answer
205 views

Calculating normals between 2 meshes ending up in seams

My Task I currently creating a terrain for Unity3D which is specialized for mobile-devices with low memory for a running app. Allowing a terrain with a size of 15.000 x 15.000 kilometers and a height ...
10
votes
2answers
772 views

Intersection between two rectangles in 3D

To get the line of intersection between two rectangles in 3D, I converted them to planes, then get the line of intersection using cross product of their normals, then I try to get the line ...
10
votes
2answers
530 views

Creating OOBB from points

How can I create minimal OOBB for given points? Creating AABB or sphere is very easy, but I have problems creating minimal OOBB. [edit] First answer didn't get me good results. I don't have huge ...
9
votes
1answer
425 views

Webkit 3D CSS. Rotate camera like in a First Person Shooter

What I want to achieve is a camera rotation like http://www.keithclark.co.uk/labs/3dcss/demo/ . It's not perfect and sometimes the camera breaks, but that's the idea. I like the rotation to be ...
8
votes
2answers
299 views

How does Google Body load so fast?

http://bodybrowser.googlelabs.com/ I know the source of their data and even for real-time use, those meshes and textures are often hundreds of Kb or even several Mb each. Even low-res, it's hard to ...
8
votes
1answer
447 views

Measuring in Kinect

I'm trying to get started with Kinect, and it has a depth sensing camera, but I've seen no guidance on measuring width/height/lengths. Is it a matter of working out the distance an object is away ...
8
votes
8answers
975 views

Freely available 3D graphics resources

I'm primarily a programmer and always have the same issue when starting new projects: I have no artistic bone in my body. But you can't always afford an artist. What resources can I use for ...
8
votes
4answers
21k views

OpenGL rotating a camera around a point

In OpenGL I'm trying to rotate a camera around a point, with camera being distance r from the point and facing the point when it rotates. In other words, I want the camera to move along the ...
7
votes
2answers
99 views

Why is collision difficult to effectively compute in graphics engines?

From the oldest games to the very modern, it seems like you can still see through walls or most often the ground in some camera positions. Why is collision difficult to effectively compute in graphics ...
7
votes
1answer
208 views

Shadows in mathematica Graphics3D

If I understood the Mathematica documentation correct ( haven't found examples either ) Graphics3D does not produce shadows of 3D objects, although Graphics3D has a Lighting-> option. Question: Have ...
7
votes
1answer
330 views

Exploded view algorithm for CAD

I'm making a program to view 3D CAD models and would like to build in automated exploded views. All the assemblies that will be viewed are axi-symmetric. Some may not be, but the majority are. I'd ...
7
votes
2answers
3k views

OpenGL 4.1 vs 3.1+

I understand that OpenGL 4 and 3 are fairly similar. What are the differences, especially, what could be better about an OpenGL 4.1 workflow and feature set compared with OpenGL 3.1+? Additionally, ...
7
votes
4answers
243 views

Is there a need to code a new 3D engine?

Coding a new 3D engine is fascinating but I there are so many out there. Is it sane for a programmer to start a new one? Are there industry sections in need?
7
votes
9answers
1k views

suggestions for a 3D graph rendering library?

So I'm not sure how stackoverflow friendly this question is since it doesn't have a quick clear cut answer but here we go... I have a java program that generates data for a directed graph. Now I need ...
7
votes
7answers
7k views

robust algorithm for surface reconstruction from 3D point cloud?

I am trying to figure out what algorithms there are to do surface reconstruction from 3D range data. At a first glance, it seems that the Ball pivoting algorithm (BPA) and Poisson surface ...
7
votes
5answers
16k views

How to convert a 3D point into 2D perspective projection?

I am currently working with using Bezier curves and surfaces to draw the famous Utah teapot. Using Bezier patches of 16 control points, I have been able to draw the teapot and display it using a ...
6
votes
5answers
346 views

3D/4D graphics with Python and wxPython?

In my day job as a PhD student, I do geological modeling. In my spare time (mainly for fun), I am learning Python and trying to write a simple program to view 3D geocellular models. The ...
6
votes
2answers
123 views

Overlapped Mesh lines in ContourPlot3D

I have a problem with rendering of Mesh lines on a 3D surface produced by ContourPlot3D in Mathematica 7.0.1: p=ContourPlot3D[x^4+y^4+z^4-(x^2+y^2+z^2)^2+3(x^2+y^2+z^2)==3, {x, -2,2}, {y, -2, ...
6
votes
1answer
2k views

The purpose of Model View Projection Matrix

For what purposes we are using Model View Projection Matrix? Why do shaders require Model View Projection Matrix?
6
votes
1answer
152 views

Render to part of texture

Since layered rendering with a geometry shader in OpenGL seems a bit dodgy on some drivers/hardware, I would like to substitute the functionality with my own solution. This by using a big texture as ...
6
votes
5answers
1k views

C++ - tangent, binormal and other shader-related things

Many of the mapping technics including normal bump mapping, parallax mapping and others require the special per-vertex tangent-space basis (tangent, normal, binormal / bitangent). This obviously ...
6
votes
3answers
114 views

Is it possible to view the data in the Graphics Card's memory?

I am curious about this. Is it possible to view what textures are currently being loaded into the RAM of the Graphics Card? For instance, if you open 2-3 highly intensive 3D games, is it possible to ...
6
votes
4answers
3k views

About RenderScript

Recently,i search for articles about renderscript,but it seems that there's none. can any one give me some articles talking about renderscript?
6
votes
6answers
470 views

OpenGL for space simulators

with a few friends we started this amateur platform-independent java-based project for a space combat simulator game (something like the long dead saga of wing commander). None of us though is a 3D ...
6
votes
2answers
2k views

SIMPLE 3D rendering in C#

I am a visual person, if I can visualize something it often makes more sense to me. Is there a simple way to render data in 3D to use for simple visualizations? What I effectively would like to do ...
6
votes
8answers
1k views

What is the best application/technique to design 3D landscapes for a Game?

I am currently in the process of needing to create game content for our student project. I need to create a desert environment that we will export then load into our game. I am not a designer, ...
5
votes
3answers
119 views

Are there any libraries that let me display remote rendering on a website?

Rather than use WebGL, NaCl, Flash or developing a custom browser plugin, I'm interested in doing 3D real-time rendering on the server. It's for a specialist product not general use. Are there any ...
5
votes
4answers
126 views

Which 3D graphics toolkit should I use to build a simple 3D Globe with country outlines and other overlays?

I want to build a 3D globe in my C# application. I will have to put the outlines of the countries on the globe along with some other simple polygon overlays I'll have to draw. The mouse interaction ...
5
votes
2answers
134 views

Difference between Doom and Quake 3D rendering

I have been studying (old) 3D rendering techniques for the past weeks and think that I now have a fair understanding of the way 3D rendering in Doom works. It uses raycasting to render the 3D scene, ...
5
votes
4answers
344 views

find if point lay on line segment

I have line segment defined by two points A(x1,y1,z1) and B(X2,Y2,Z2) and point p(x,y,z) how to know if this point lay on this line segment any algorithm , or sample code will be highly appreciated ...
5
votes
2answers
147 views

OpenGL transparent effects displayed quite awful on Meego

we've been creating several half-transparent 3D cubes in a scene by OpenGL which displays very good on Windows 7 and Fedora 15, but become quite awful on Meego system. This is what it looks like on ...
5
votes
1answer
374 views

Raytracer - Computing Eye Rays

I'm writing a ray tracer (mostly for fun) and whilst I've written one in the past, and spent a decent amount of time searching, no tutorials seem to shed light on the way to calculate the eye rays in ...
5
votes
4answers
185 views

Begining 3D programming / OpenGL

I'm fairly familiar with C / C++ / java, but I have mostly only ever done command line programming (with the exception of GUI in java). I am really interested in 3D programming, but the problem I am ...
5
votes
4answers
644 views

perspective correction of texture coordinates in 3d

I'm writing a software renderer which is currently working well, but I'm trying to get perspective correction of texture coordinates and that doesn't seem to be correct. I am using all the same matrix ...
5
votes
2answers
892 views

Very simple 2d and 3d graphics library

I have to create library that render static, simple shapes with some 3d effects such as rotation and bevels. Shapes can contains text or image on it. Something similar to this: I think that with ...
5
votes
1answer
603 views

Put a Cinema 4D model and Texture into an iPhone App

Im an iPhone developer and i'm trying to get a 3D model that I create in Cinema 4D into an app im making. I have actually found a way to get the model in (by exporting it as a .dae or obj and using a ...
5
votes
4answers
315 views

.NET high level graphics library

I am programming various simulation tools in C#/.NET What I am looking for is a high level visualization library; create a scene, with a camera with some standard controls, and render a few hunderd ...
5
votes
4answers
660 views

Move an object in the direction of a bezier curve?

I have an object with which I would like to make follow a bezier curve and am a little lost right now as to how to make it do that based on time rather than the points that make up the curve. ...
5
votes
2answers
283 views

OutOfMemory Exception when drawing cube

i have a class that draws and rotates a cube. every time i rotate the cube i reload the buffer with the new values for the cube. public void LoadBuffer(GraphicsDevice graphicsDevice) { ...
5
votes
2answers
695 views

3D visualization in browser

I am looking for solutions for 3D visualizations in web browsers. For now I just need to do research about this topic, i.e. I need to know how many solutions exist and which of these are good and ...
5
votes
3answers
2k views

Should Quaternion based 3D Cameras accumulate Quaternions or Euler angles?

So I have written a Quaternion based 3D Camera oriented toward new programmers so it is ultra easy for them to integrate and begin using. While I was developing it, at first I would take user input ...

1 2 3 4 5 13