Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
735 views

Game engines: What are scene graphs?

I've started reading into the material on Wikipedia, but I still feel like I don't really understand how a scene graph works and how it can provide benefits for a game. What is a scene graph in the ...
6
votes
3answers
2k views

3D scene-graph library for Java?

I'm looking for a reliable 3D scenegraph API for Java with good documentation, an active community and a license that allows for commercial use. I ruled out com.sun.scenegraph because it's GPL (and ...
4
votes
2answers
818 views

Java 2D scene graph library for GUI

I'm looking for a 2D scene graph library for building GUI applications. It should be fast, using Java2D and be compatible with Swing (embeddable in a Swing app and also display Swing components). ...
3
votes
4answers
1k views

3D Scene graph toolkits for Android

I was wondering if there is any 3D scene graph toolkit available or at least in development for Android? I could not find anything, assuming that all existing solutions for Java won't run on the ...
3
votes
4answers
2k views

Is there any decent OpenGL SceneGraph API/framework?

I am new to OpenGL. Wondering if there is any good Scenegraph API/framework for OpenGL. At the moment I am using glut with a custom node based solution: I am setting children and siblings for each ...
2
votes
2answers
80 views

Integrating OpenSceneGraph with Qt

I have fiddled around with OpenGL on Qt. But now I want to have complex scenes. (With multiple COLLADA/MD2 models loaded). For this I'm thinking of using OpenSceneGraph (OSG). Is it possible to ...
2
votes
1answer
314 views

Implementing a scene graph on OpenGL ES 2.0

I am looking for a way to implement some basic scene management in OpenGL ES 2.0 where there's no fixed function pipeline. Normally I would implement a Node base class that would apply its ...
2
votes
2answers
296 views

SceneGraph traversal in Haskell

I want to implement a simple SceneGraph in Haskell using Data.Tree consisting of Transform and Shape nodes. In a SceneGraph the spatial transformation is accumulated while traversing and applied to ...
2
votes
3answers
2k views

How do I use OpenGL 3.x VBOs to render a dynamic world?

Although there seem to be very few up to date references for OpenGL 3.x itself, the actual low level manipulation of OpenGL is relatively straight forward. However I am having serious trouble trying ...
2
votes
1answer
636 views

Attach an object to the view platform in Java3D

In my Java3D application, I have a movable viewing platform (thanks to "OrbitBehavior" and "KeyNavigatorBehavior" behaviors for example) so I can change my point of view to the scene. Now, I would ...
2
votes
3answers
870 views

What makes a JavaFx 1.2 Scene Graph Refresh?

My first question =). I'm writing a video game with a user interface written in JavaFx. The behavior is correct, but I'm having performance problems. I'm trying to figure out how to figure out what is ...
1
vote
2answers
115 views

3D Scene graph traversing problem

I have implemented a small scene graph to be rendered by OpenGL, all the objects derive from a common Node class and during OpenGL frame rendering I just call the visit method of the root node and it ...
1
vote
1answer
301 views

Scene graph for 2D engine

For my experimental 2D engine, I want to include a scene graph implementation to, with good performance, determine which objects have to be rendered (are visible for the camera). Unfortunately, I ...
1
vote
2answers
99 views

Java3d scenegraph visualization tool

Is there a tool for visualizing a given java3d app's scenegraph? Just like there is tools for auto generating UML diagrams. Edit: if not, is there any good free tools for drawing such graphs? os x
1
vote
0answers
244 views

Certain transformations in Open Inventor(Coin3D)

I am quite new to Open Inventor(Coin3D) and have the following problem: I have a SoSelection holding a root node(also SoSeparator). And the root node holds a number of SoSeparator nodes. Each of ...
1
vote
4answers
638 views

Start with a scene graph engine or with opengl direct?

I am a professional developer working mostly with Java but on my spare time i like to play around with different languages and libraries. The thing is that i want to start learning how to develop 3D ...
1
vote
2answers
666 views

Scene graph implementation for Papervision?

I'm trying to use Papervision for Flash, for this project of mine, which involves a 3D model of a mechanical frame, consisting of several connected parts. Movement of one of the parts results in a ...
1
vote
2answers
703 views

Getting absolute position and rotation from inside a scene graph?

So I have run up against this problem a few times: I have some object in my 3D Scene Graph which is a child of some other object. Lets call them c (Child) and p (Parent). c's position is defined ...
0
votes
1answer
215 views

Can a cocos2d scene occupy only part of the device's screen?

I am working on an iOS action game wherein the player travels between various "rooms," each of which is contained in a CCScene. When the player exits a room, the next one "slides" onto the screen ...
0
votes
1answer
295 views

How to a clear Opengl ES material properties to avoid incorrect materials being reused?

I am working on an Android opengl lib and have hit a small issue. I know it is something easy to fix but I am having a lot of trouble tracking it down. In a nut shell, I am working on a 3d scene graph ...
0
votes
1answer
208 views

Collada scene graph

Cuold you please tell me what is a Collada scene graph? Can I take a scene that I've downloaded from Google 3D warehouse and somehow convert it to a Collada scene graph? Does the process somehow ...
0
votes
2answers
454 views

implementing MVC pattern on c++ scene graph

I have a tree of objects that represent a 3D-model (a scene graph). The tree nodes are of different types (implemented as derived classes from a common base class). For example, there is a node ...
0
votes
2answers
89 views

Problem with method in a class when called from another class

I'm writing a simple scene graph to hold some objects so I can control the rendering and drawing of these objects in OpenGL. I have two classes, one called GameObject which defines the objects with ...
0
votes
1answer
460 views

Javadoc for JavaFX (not JavaFX api!); from source? from project scenegraph?

The API JavaFX comes with is for the JavaFX langage, which I have one reason to learn, but more reasons not to. I know Project Scenegraph (scenegraph.dev.java.net, AKA Scenario) is ambiguously the ...
0
votes
3answers
249 views

Building a new hierarchy, use an abstract class or an interface?

I'm preparing to build a 2D scene graph for my game, and i would like to know whether i should use at it's root an interface or two or a couple of abstract classes. Here's my requirements: Base node ...