Re: [osg-users] Positioning the camera

2012-11-15 Thread Christian Buchner
You're trying to set the view matrix on the camera which may get overwritten by the camera manipulator at the beginning of each frame. Instead, check your camera manipulator (e.g. TrackballManipulator) if it has a member function that accepts a view matrix. Some camera manipulators (like the Terra

[osg-users] Positioning the camera

2012-11-15 Thread michael kapelko
Hi. I have default viewer without any special manipulator specified. I try to setViewMatrix for camera to position it, but it doesn't work. Code: http://pastie.org/5382807 It needs to be run from Data directory. Am I doing it wrong? ___ osg-users mailing

Re: [osg-users] Finding OSG debug libraries

2012-11-15 Thread Mathias Buhr
> My suggestion would actually be that if only debug libs (with d postfix) are > provided, that those libs are taken for release and debug applications > build > > -- I think that's simply not possible on Windows. I'm not a windows developer myself but I think you can't mix

Re: [osg-users] building OSG 3.0.1 on Mac Snow Leopard

2012-11-15 Thread Stephan Maximilian Huber
Hi Gianluca, it should be safe to use the libs provieded by the system. Carbon is deprecated, and most new features went into the cocoa window implementation of osg, so please use the cocoa window-implementation. cheers, Stephan Am 14.11.12 17:19, schrieb Gianluca Natale: > Hi all, > I'm trying

Re: [osg-users] osg::LineStipple - dashed lines unexpected behaviour

2012-11-15 Thread Darren Graham
Got something working based on the osgtexture1D example. Cheers, Darren -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=51104#51104 ___ osg-users mailing list osg-users@lists.openscenegraph.org http:/

Re: [osg-users] Finding OSG debug libraries

2012-11-15 Thread Daniel Schmid
Thanks for the reply. The problem I had was that I had only a OSG-debug build. The FindPackage funktions can either find release libs or release&debug libs, but if you provide only debug libs (with d postfix), there is no luck, the find will abort. Finally I had a release and a debug build, bu