formatting

This commit is contained in:
Dave Schuyler 2003-06-11 02:32:14 +00:00
parent ae5d4a9cb2
commit f7e417c6d5

View File

@ -28,8 +28,7 @@ TypeHandle ForceNode::_type_handle;
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
ForceNode:: ForceNode::
ForceNode(const string &name) : ForceNode(const string &name) :
PandaNode(name) PandaNode(name) {
{
} }
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
@ -73,8 +72,9 @@ add_forces_from(const ForceNode &other) {
_forces.insert(_forces.end(), _forces.insert(_forces.end(),
other._forces.begin(), other._forces.end()); other._forces.begin(), other._forces.end());
for (; last != _forces.end(); last++) for (; last != _forces.end(); last++) {
(*last)->_force_node = this; (*last)->_force_node = this;
}
} }
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////