<div dir="ltr"><div><div><div><div>Hi Elias,<br><br></div>It seems to me that you are confusing local, world and eye coordinate frames.<br><br></div>I really don't know why you are discussing NodeTrackerManipualtor in this context, it's a camera manupulator for setting the view matrix of the viewer's Camera to follow a Node in the scene graph.  The manipulator is setting eye coordinates.  The object it tracks has a path from the root of the scene graph to the node, the transforms between the root and the node you specify provides the coordinate frame relative to world coordinates, where world coordinates it the coordinate frame of the root node.   The manipulator doesn't have any effect on the coordinate frame of the node being tracked, just affects viewer's Camera's view matrix.<br><br></div>If you want to change a node local coordinate frame then you use a transform.<br><br></div>Robert.<br><div><div><div><br><br><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 23 June 2015 at 09:56, Elias Tarasov <span dir="ltr"><<a href="mailto:elias.tarasov@gmail.com" target="_blank">elias.tarasov@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello, Robert!<br>
Thanks for the quick reply.<br>
It seems i wasn't able to clarify my question. I dont use MatrixTransform or PositionAttitudeTransform here because i don't want to transform my target node relate to others. I want to change local XYZ in that node itself, not the position of my node relate to other nodes or world XYZ.<br>
<br>
Let me describe more specifically.<br>
Standart aerodynamic convention (and it also looks reasonable in most practical situations) defines local(body) coordinate system as:<br>
O - center of mass (here just center of a node), X - from center up to nose, Y - from center up to right wing, Z - down. That leads to Roll, Pitch, Yaw rotations around X,Y,Z respectively.<br>
<br>
Let say i want to place camera right behind cessna's tail. Then, AFAIK that code can help me<br>
<br>
Code:<br>
<span class=""><br>
nodeTracker = new osgGA::NodeTrackerManipulator;<br>
</span>nodeTracker->setHomePosition( Vec3(-90,0,0), Vec3(), Z_AXIS );<br>
nodeTracker->setTrackerMode(osgGA::NodeTrackerManipulator::NODE_CENTER_AND_ROTATION );<br>
nodeTracker->setTrackNode( cessna.get() );<br>
<br>
<br>
<br>
<br>
So: eye Vec3(-90,0,0) means 90 behind center on X. //Local coords, right?<br>
And of course what we can see now is depended on how X is oriented with respect to model body.<br>
<br>
If, for instance, X has center at model's center and go straight up to nose,<br>
then -90 means right behind tail (this is what i want to achieve)<br>
<br>
But if X has center at model's center and go from right wing, then -90 means we see left side of an aeroplane, not the tail.<br>
<br>
Then, even when cessna moves correctly (for instance, straight to the north), i see at as moving with right wing forward and nose to the west.<br>
<br>
Also, Roll (rotation about X axis) will be looking like pitch (rotation about Y axis according to aerodynamic standart)<br>
So to avoid confusion and necessity to remeber how that particular node (cessna) is oriented with respect to its own local coords, maybe the better<br>
way is to rotate local coords somehow?<br>
<br>
I might be wrong, just to explain why i cannot use Tranform classes according to you advice.<br>
<br>
Could you explain how that problem might be solved?<br>
<span class=""><br>
Thank you!<br>
<br>
Cheers,<br>
Elias<br>
<br>
------------------<br>
Read this topic online here:<br>
</span><a href="http://forum.openscenegraph.org/viewtopic.php?p=64161#64161" rel="noreferrer" target="_blank">http://forum.openscenegraph.org/viewtopic.php?p=64161#64161</a><br>
<div class="HOEnZb"><div class="h5"><br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</div></div></blockquote></div><br></div>