From: Braden M. <br...@us...> - 2006-10-18 05:57:02
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14364/src/libopenvrml/openvrml Modified Files: vrml97node.cpp Log Message: Fixed some residual uses of the openvrml::mat4f constructor. Index: vrml97node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/vrml97node.cpp,v retrieving revision 1.114 retrieving revision 1.115 diff -C2 -d -r1.114 -r1.115 *** vrml97node.cpp 22 Sep 2006 01:06:07 -0000 1.114 --- vrml97node.cpp 18 Oct 2006 05:56:59 -0000 1.115 *************** *** 26882,26886 **** const node_path path = this->scene()->browser().find_node(*this); assert(!path.empty()); ! this->parent_transform = mat4f(); std::for_each(path.begin(), path.end(), accumulate_transform_(this->parent_transform)); --- 26882,26886 ---- const node_path path = this->scene()->browser().find_node(*this); assert(!path.empty()); ! this->parent_transform = make_mat4f(); std::for_each(path.begin(), path.end(), accumulate_transform_(this->parent_transform)); |