From 0ea5fc66924303d1bf73ba283a383e2aadee02f2 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Aug 2018 20:21:34 +0200 Subject: Initial commit --- docs/doxygen/nel/a03406.html | 138 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 docs/doxygen/nel/a03406.html (limited to 'docs/doxygen/nel/a03406.html') diff --git a/docs/doxygen/nel/a03406.html b/docs/doxygen/nel/a03406.html new file mode 100644 index 00000000..c9d5af34 --- /dev/null +++ b/docs/doxygen/nel/a03406.html @@ -0,0 +1,138 @@ + + +NeL: NL3D::CSkeletonWeight::CNode class Reference + + + +
+

NL3D::CSkeletonWeight::CNode Class Reference

#include <skeleton_weight.h> +

+


Detailed Description

+An element of the template. A pair of node name / node weight. +

+ +

+Definition at line 55 of file skeleton_weight.h. + + + + + + + + + + + + +

Public Member Functions

void serial (NLMISC::IStream &f)
 Serial the node.


Data Fields

std::string Name
 Name of the node.

float Weight
 Weight of the node.

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
void NL3D::CSkeletonWeight::CNode::serial NLMISC::IStream f  ) 
+
+ + + + + +
+   + + +

+Serial the node. +

+ +

+Definition at line 83 of file skeleton_weight.cpp. +

+References NLMISC::IStream::serial(), and NLMISC::IStream::serialVersion(). +

+

00084 {
+00085         // Serial a version number
+00086         (void)f.serialVersion (0);
+00087 
+00088         // Serial the name
+00089         f.serial (Name);
+00090 
+00091         // Serial the weight
+00092         f.serial (Weight);
+00093 }
+
+


Field Documentation

+

+ + + + +
+ + +
std::string NL3D::CSkeletonWeight::CNode::Name +
+
+ + + + + +
+   + + +

+Name of the node. +

+ +

+Definition at line 59 of file skeleton_weight.h.

+

+ + + + +
+ + +
float NL3D::CSkeletonWeight::CNode::Weight +
+
+ + + + + +
+   + + +

+Weight of the node. +

+ +

+Definition at line 62 of file skeleton_weight.h.

+


The documentation for this class was generated from the following files: +
Generated on Tue Mar 16 07:47:03 2004 for NeL by + +doxygen +1.3.6
+ + -- cgit v1.2.1