Canguro.Model.Serializer.Deserializer.readJointForces C# (CSharp) Method

readJointForces() private method

private readJointForces ( XmlNode node ) : void
node System.Xml.XmlNode
return void
        private void readJointForces(XmlNode node)
        {
            foreach (XmlNode child in node.ChildNodes)
                if ("Joint".Equals(child.Name))
                    readJointForce(child);
        }
Deserializer