Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 12, 2005, 11:00:48 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: included libORXquadtree.a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/render2D/element_2d.h

    r4840 r4843  
    1010
    1111// FORWARD DECLARATION
     12class PNode;
    1213
    1314//!< An enumerator defining the Depth of a 2D-element.
     
    1920  E2D_BELOW_ALL                        //!< Will be rendered below the 3D-scene. @todo make this work.
    2021} E2DLayer;
     22
     23
     24typedef enum
     25{
     26  ELEM2D_ALIGN_LEFT,
     27  ELEM2D_ALIGN_RIGHT,
     28  ELEM2D_ALIGN_CENTER,
     29  ELEM2D_ALIGN_SCREEN_CENTER
     30} ELEM2D_ALIGNMENT;
     31
    2132
    2233//! A class for ...
     
    3243
    3344
     45  void positioning();
    3446  virtual void draw() const = NULL;
    3547
     
    3951   E2DLayer           layer;
    4052
     53   ELEM2D_ALIGNMENT   alignment;
     54   PNode*             bindNode;         //!< a node over which to display this 2D-element
    4155};
    4256
Note: See TracChangeset for help on using the changeset viewer.