<div dir="ltr">Hello everyone! This must be a simple one... I have a node that has one parent which is a MatrixTransform. I simply need to move the child node to a specific location that is computed at run time. I figured I just needed to do the following, but this caused no change in the location of the node:<div><br></div><div><div class="prettyprint" style="background-color: rgb(250, 250, 250); border-color: rgb(187, 187, 187); border-style: solid; border-width: 1px; overflow-wrap: break-word;"><code class="prettyprint"><div class="subprettyprint"><span style="" class="styled-by-prettify"><font color="#000000"><div class="subprettyprint" style="">const osg::Matrix OriginalParentMatrix = pParentMatrixTransform->getMatrix();</div><div class="subprettyprint" style=""><br></div><div class="subprettyprint" style="">osg::Matrix TranslateContribution;</div><div class="subprettyprint" style="">TranslateContribution.makeTranslate(10.0f, 0.0f, 0.0f);</div><div class="subprettyprint" style=""><span style="font-family: Arial, Helvetica, sans-serif;"><br>const osg::Matrix FinalNewMatrix = (OriginalParentMatrix * TranslateContribution);</span><br></div><div class="subprettyprint" style=""><br></div><div class="subprettyprint" style="">pParentMatrixTransform->setMatrix(FinalNewMatrix);</div></font></span></div></code></div><br>No matter what translation I set in makeTranslate(), the child node doesn't move. Is there some call I'm missing to cause the new matrix to take effect on the node's parent matrix transform? Thank you in advance!</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups "OpenSceneGraph Users" group.<br />
To unsubscribe from this group and stop receiving emails from it, send an email to <a href="mailto:osg-users+unsubscribe@googlegroups.com">osg-users+unsubscribe@googlegroups.com</a>.<br />
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/osg-users/26bd1277-4323-4140-a080-a474b9273dc5%40googlegroups.com?utm_medium=email&utm_source=footer">https://groups.google.com/d/msgid/osg-users/26bd1277-4323-4140-a080-a474b9273dc5%40googlegroups.com</a>.<br />