Main Page   Packages   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Search  

Sommet3D Struct Reference

#include <Model.hpp>

Inheritance diagram for Sommet3D::

Sommet2D Sommet3DH List of all members.

Public Methods

 Sommet3D ()
 Sommet3D (realtype X, realtype Y, realtype Z)
 Sommet3D (const Sommet3D &s)
const Sommet3D & operator= (const Sommet3D &v)
const Sommet3D & operator= (const Sommet2D &v)

Public Attributes

realtype x
realtype y
realtype z

Constructor & Destructor Documentation

Sommet3D::Sommet3D   [inline]
 

Definition at line 53 of file Sommet.hpp.

00053 : z( 0.0 ) { }

Sommet3D::Sommet3D realtype    X,
realtype    Y,
realtype    Z
[inline]
 

Definition at line 54 of file Sommet.hpp.

00056                         : Sommet2D( X, Y ), z( Z ) { }

Sommet3D::Sommet3D const Sommet3D &    s [inline]
 

Definition at line 58 of file Sommet.hpp.

00058 : Sommet2D( s.x, s.y ), z( s.z ) { }


Member Function Documentation

const Sommet3D & Sommet3D::operator= const Sommet2D   v
 

Reimplemented from Sommet2D.

Reimplemented in Sommet3DH.

Definition at line 30 of file Sommet.cpp.

00031 {
00032   x = v.x; 
00033   y = v.y;
00034   return *this;
00035 }

const Sommet3D & Sommet3D::operator= const Sommet3D &    v
 

Reimplemented in Sommet3DH.

Definition at line 22 of file Sommet.cpp.

00023 {
00024   x = v.x;
00025   y = v.y;
00026   z = v.z; 
00027   return *this;
00028 }


Member Data Documentation

realtype Sommet3D::x
 

Reimplemented from Sommet2D.

Reimplemented in Sommet3DH.

Definition at line 44 of file Model.hpp.

Referenced by CheckingProfilRotationZ(), ModeleurProfToProf(), ModeleurRotationZ(), ModeleurTranslation(), RotateVertex(), TransVertex(), operator<<(), Sommet3DH::operator=(), and operator>>().

realtype Sommet3D::y
 

Reimplemented from Sommet2D.

Reimplemented in Sommet3DH.

Definition at line 44 of file Model.hpp.

Referenced by CheckingProfilRotationZ(), ModeleurProfToProf(), ModeleurRotationZ(), ModeleurTranslation(), RotateVertex(), TransVertex(), operator<<(), Sommet3DH::operator=(), and operator>>().

realtype Sommet3D::z
 

Reimplemented in Sommet3DH.

Definition at line 51 of file Sommet.hpp.

Referenced by ModeleurProfToProf(), ModeleurRotationZ(), ModeleurTranslation(), RotateVertex(), TransVertex(), operator<<(), Sommet3DH::operator=(), and operator>>().


The documentation for this struct was generated from the following files:
Generated on Sun Oct 14 18:49:48 2001 for Standard J2K Library by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001