Code_TYMPAN  4.4.0
Industrial site acoustic simulation
Public Member Functions | Static Public Attributes | Protected Attributes | List of all members
TYPolyLineGraphic Class Reference

classe graphique pour representer une polyligne a partir d'un tableau de points. More...

#include <TYPolyLineGraphic.h>

Inheritance diagram for TYPolyLineGraphic:
Inheritance graph
[legend]
Collaboration diagram for TYPolyLineGraphic:
Collaboration graph
[legend]

Public Member Functions

 TYPolyLineGraphic (bool closed=false)
 
virtual ~TYPolyLineGraphic ()
 
virtual void update (bool force=false)
 
virtual void display (TYElement *pModelerElement=nullptr, GLenum mode=GL_RENDER)
 
virtual void computeBoundingBox ()
 
void setTabPoint (const TYTabPoint &tabPts)
 
TYTabPointgetTabPoint ()
 
const TYTabPointgetTabPoint () const
 
- Public Member Functions inherited from TYElementGraphic
virtual ~TYElementGraphic ()
 
void setElement (TYElement *pElt)
 
TYElementgetTYElement ()
 
void updateTree ()
 
void setModified (bool modified=true)
 
bool getModified (bool andReset=false)
 
void setVisible (bool visible=true)
 
bool getVisible ()
 
void setRecursiveVisible (bool visible=true)
 
void setTexture (bool state=true)
 
bool getTexture ()
 
OBox GetBox ()
 
virtual void getChilds (TYListPtrTYElementGraphic &childs, bool recursif=true)
 
void highlight (bool state=true)
 
bool getHighlightState ()
 
void viewOnlyHighlight (bool state=true)
 
bool getOnlyHighlight ()
 
- Public Member Functions inherited from IRefCount
 IRefCount ()
 
virtual ~IRefCount ()
 
virtual int incRef ()
 
virtual int decRef ()
 
int getRefCount () const
 

Static Public Attributes

static const unsigned int default_width_px = 2
 
- Static Public Attributes inherited from TYElementGraphic
static OBox _globalBoundingBox
 
static bool _gDrawNormals = false
 Indique si les normals doivent etre visible. More...
 
static bool _gDrawPlafond = true
 Indique si les plafonds doivent etre visible. More...
 

Protected Attributes

TYTabPoint _tabPts
 
bool _closed
 
GLfloat width
 Line width - cf OpenGL doc for exact meaning. More...
 
- Protected Attributes inherited from TYElementGraphic
OBox _boundingBox
 
TYElement_pElement
 L'element metier auquel cet element graphique metier est associe. More...
 
bool _highlight
 Indique si le highlight est active pour cet element. More...
 
bool _texture
 Indique si le texturing est active pour cet element. More...
 
bool _visible
 Inique si l'element est visible. More...
 
bool _bFirstDisp
 
- Protected Attributes inherited from IRefCount
int m_refCount
 The reference counter. More...
 

Additional Inherited Members

- Protected Member Functions inherited from TYElementGraphic
 TYElementGraphic (TYElement *pElt)
 
void displayNormal (OVector3D normal, OPoint3D p1)
 
void glVertex3fAndEnlargeBB (GLfloat x, GLfloat y, GLfloat z)
 
void glVertex3dAndEnlargeBB (GLdouble x, GLdouble y, GLdouble z)
 
void gluDiskAndEnlargeBB (GLUquadric *qobj, GLdouble innerRadius, GLdouble outerRadius, GLint slices, GLint loops)
 
void gluCylinderAndEnlargeBB (GLUquadric *qobj, GLdouble baseRadius, GLdouble topRadius, GLdouble height, GLint slices, GLint stacks)
 
void gluPartialDiskAndEnlargeBB (GLUquadric *qobj, GLdouble innerRadius, GLdouble outerRadius, GLint slices, GLint loops, GLdouble startAngle, GLdouble sweepAngle)
 
void drawBoundingBox ()
 
void drawLineBoundingBox ()
 
void drawName (TYElement *pModelerElement=nullptr)
 

Detailed Description

classe graphique pour representer une polyligne a partir d'un tableau de points.

Definition at line 42 of file TYPolyLineGraphic.h.

Constructor & Destructor Documentation

◆ TYPolyLineGraphic()

TYPolyLineGraphic::TYPolyLineGraphic ( bool  closed = false)

Constructor

Definition at line 28 of file TYPolyLineGraphic.cpp.

◆ ~TYPolyLineGraphic()

TYPolyLineGraphic::~TYPolyLineGraphic ( )
virtual

Destructor

Definition at line 33 of file TYPolyLineGraphic.cpp.

Member Function Documentation

◆ computeBoundingBox()

void TYPolyLineGraphic::computeBoundingBox ( )
virtual

Build the bounding box, with the min and max of each coordinate

Reimplemented from TYElementGraphic.

Definition at line 40 of file TYPolyLineGraphic.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ display()

void TYPolyLineGraphic::display ( TYElement pModelerElement = nullptr,
GLenum  mode = GL_RENDER 
)
virtual

Fonction d'affichage

Parameters
pModelerElementelement du modeleur a afficher
modemode d'affichage

Reimplemented from TYElementGraphic.

Definition at line 53 of file TYPolyLineGraphic.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getTabPoint() [1/2]

TYTabPoint& TYPolyLineGraphic::getTabPoint ( )
inline

Definition at line 90 of file TYPolyLineGraphic.h.

Here is the caller graph for this function:

◆ getTabPoint() [2/2]

const TYTabPoint& TYPolyLineGraphic::getTabPoint ( ) const
inline

Definition at line 94 of file TYPolyLineGraphic.h.

◆ setTabPoint()

void TYPolyLineGraphic::setTabPoint ( const TYTabPoint tabPts)
inline

Definition at line 85 of file TYPolyLineGraphic.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ update()

void TYPolyLineGraphic::update ( bool  force = false)
virtual

Updates the 3D object associated to this object Note : When this method is overloaded, the parent implementation (TYElementGraphic::update()) must be called at the end

Parameters
forceoverstep the state of the flag 'modified' and apply the update.

Reimplemented from TYElementGraphic.

Definition at line 35 of file TYPolyLineGraphic.cpp.

Here is the call graph for this function:

Member Data Documentation

◆ _closed

bool TYPolyLineGraphic::_closed
protected

Definition at line 102 of file TYPolyLineGraphic.h.

◆ _tabPts

TYTabPoint TYPolyLineGraphic::_tabPts
protected

Definition at line 101 of file TYPolyLineGraphic.h.

◆ default_width_px

const unsigned int TYPolyLineGraphic::default_width_px = 2
static

Default line width in screen pixels (cf OpenGL doc for more details of meaning when coupled with anti-aliasing)

Definition at line 50 of file TYPolyLineGraphic.h.

◆ width

GLfloat TYPolyLineGraphic::width
protected

Line width - cf OpenGL doc for exact meaning.

Definition at line 104 of file TYPolyLineGraphic.h.


The documentation for this class was generated from the following files: