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/a02897.html | 203 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 203 insertions(+) create mode 100644 docs/doxygen/nel/a02897.html (limited to 'docs/doxygen/nel/a02897.html') diff --git a/docs/doxygen/nel/a02897.html b/docs/doxygen/nel/a02897.html new file mode 100644 index 00000000..d05eccd9 --- /dev/null +++ b/docs/doxygen/nel/a02897.html @@ -0,0 +1,203 @@ + + +NeL: NL3D::CMeshMRMGeom::CShadowVertex class Reference + + + +
+

NL3D::CMeshMRMGeom::CShadowVertex Class Reference

#include <mesh_mrm.h> +

+ + + + + + + + + + + + + + +

Public Member Functions

bool operator< (const CShadowVertex &v) const
bool operator== (const CShadowVertex &v) const
void serial (NLMISC::IStream &f)

Data Fields

uint32 MatrixId
CVector Vertex
+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
bool NL3D::CMeshMRMGeom::CShadowVertex::operator< const CShadowVertex v  )  const [inline]
+
+ + + + + +
+   + + +

+ +

+Definition at line 309 of file mesh_mrm.h. +

+References v. +

+

00310                 {
+00311                         if(MatrixId!=v.MatrixId)
+00312                                 return MatrixId<v.MatrixId;
+00313                         else
+00314                                 return Vertex<v.Vertex;
+00315                 }
+
+

+ + + + +
+ + + + + + + + + + +
bool NL3D::CMeshMRMGeom::CShadowVertex::operator== const CShadowVertex v  )  const [inline]
+
+ + + + + +
+   + + +

+ +

+Definition at line 305 of file mesh_mrm.h. +

+References v. +

+

00306                 {
+00307                         return MatrixId==v.MatrixId && Vertex==v.Vertex;
+00308                 }
+
+

+ + + + +
+ + + + + + + + + + +
void NL3D::CMeshMRMGeom::CShadowVertex::serial NLMISC::IStream f  )  [inline]
+
+ + + + + +
+   + + +

+ +

+Definition at line 296 of file mesh_mrm.h. +

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

+

00297                 {
+00298                         (void)f.serialVersion(0);
+00299 
+00300                         f.serial(Vertex);
+00301                         f.serial(MatrixId);
+00302                 }
+
+


Field Documentation

+

+ + + + +
+ + +
uint32 NL3D::CMeshMRMGeom::CShadowVertex::MatrixId +
+
+ + + + + +
+   + + +

+ +

+Definition at line 295 of file mesh_mrm.h.

+

+ + + + +
+ + +
CVector NL3D::CMeshMRMGeom::CShadowVertex::Vertex +
+
+ + + + + +
+   + + +

+ +

+Definition at line 294 of file mesh_mrm.h.

+


The documentation for this class was generated from the following file: +
Generated on Tue Mar 16 06:53:19 2004 for NeL by + +doxygen +1.3.6
+ + -- cgit v1.2.1