Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
1k views

Suggestion to which C++ 3d engine is better beetwen Ogre Irrlicht and OpenSceneGraph

I'm quite familiar with 3d graphic (i developed a little and simple 3d game engine for an academic project). But now i have to develope an audio/video tool in C++ that requires also some 3d features ...
2
votes
1answer
330 views

build OpenSceneGraph 3.0.1 for iOS

I'm trying to build the OpenSceneGraph for iOS as specified in the README file. cmake -G Xcode \ -D OSG_BUILD_PLATFORM_IPHONE:BOOL=ON \ -D CMAKE_CXX_FLAGS:STRING="-ftree-vectorize ...
2
votes
3answers
196 views

memory usage and minimizing

We have a fairly graphical intensive application that uses the FOX toolkit and OpenSceneGraph, and of course C++. I notice that after running the application for some time, it seems there is a memory ...
1
vote
4answers
105 views

What are the differences between running an executable from a Windows Command Prompt versus from Windows Explorer?

EDIT: This is due to stupidity. It is a multiple monitor issue. It's just that from cmd.exe we always opened in the primary monitor, whilst from explorer, we always opened in the secondary. Thanks ...
1
vote
0answers
218 views

OSG: get coordinates of transformed primitive line? Building wireframes

two, more or less related, questions: currently I'm working on the creation of a simple wire-frame model of a more complicated object in Open Scene Graph. After creating a very primitive object (a ...
1
vote
1answer
167 views

help Implementing seek behaviour of objects on a plane in OpenSceneGraph?

Hi I have created an open plane area with thin cylinders on it like pucks, they bounce around the area and have collision detection for some larger cylinders also placed on the plane. I am trying to ...
1
vote
3answers
614 views

Export from OpenCascade, import into OpenSceneGraph

We have a modeling tool which uses OCC, and a 3d editor using OSG. What i want to do is, export the model from the first tool and import into the second tool. I have been searching the web for days, ...
0
votes
1answer
51 views

Problems compiling shader source within osg application

I have an OSG application that I want to texture map a full screen quad in the finalDrawCallback because I need everything in my scene to be rendered before the texturing is done. This is why I have ...
0
votes
0answers
75 views

OpenSceneGraph Texture2D image “dirty” vs “setImage” performance

Can anybody help me? :) I have a 2D texture placed over rectangular area - it's a dynamic texture image (640x480). tex = new osg::Texture2D; tex->setDataVariance( osg::Object::DYNAMIC ); ...
0
votes
0answers
91 views

OpenSceneGraph on iOS / Link error: Apple Mach-O-Linker (id) error

I'm trying run an OSG example on the iPhone simulator. First of all I downloaded the new Release 3.0.1. Then I run this cmake command: enter code here ccmake -G Xcode \ ...
0
votes
1answer
42 views

With OpenSceneGraph, How do I make it use GL_REPLACE to render my texture?

With OpenSceneGraph, How do I make it use GL_REPLACE to render my texture? I do not want the color of my texture to change with orientation. I also want the rendered color to match the values of the ...
0
votes
2answers
327 views

Rotate a 3D object (OSG & vc++)

I´m developing a 3D environment using VC++ and OSG and I need some help I´m using this code below to charge the 3D models for the scene mueble00Node = ...
0
votes
0answers
48 views

how use osgAnimation::Vec3CubicBezier

I want to do Animation in OSG with bezier lines and i don't find tutorial or help how to do that. Anyone can help me or give me a simple example ?
0
votes
4answers
392 views

Disable texturing in OpenSceneGraph

I need to completely disable texturing in OSG. I tried glDisable(GL_TEXTURE_2D) and also using an osg::stateSet, but some nodes that have textures still render their textures. Is there any way to ...
-1
votes
1answer
167 views

C++/CLI osg : Create Array element osg::ref_ptr<osg::Vec3Array>

Now I make osg::Vec3 type Line: public osg::ref_ptr<osg::Vec3Array> _pointArray; loadVec3(); CreateLine(_pointArray); void loadVec3() { //read cordinate from csv file par 1 line` ...