Tagged Questions

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 ...
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
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
4answers
389 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 ...