Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 24, 2006, 3:21:13 PM (19 years ago)
Author:
hdavid
Message:

branches/atmospheric_engine: renamed fake-billboard to imageplane and created new billboard

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/atmospheric_engine/src/lib/graphics/render2D/image_plane.h

    r7799 r7807  
    11/*!
    2  * @file billboard.h
    3  *  Definition of a billboard
     2 * @file image_plane.h
     3 *  Definition of a image_plane
    44 */
    55
    6 #ifndef _BILLBOARD_H
    7 #define _BILLBOARD_H
     6#ifndef _IMAGE_PLANE_H
     7#define _IMAGE_PLANE_H
    88
    99
     
    1414
    1515
    16 class Model;
    1716class Material;
    1817class TiXmlElement;
    1918
    2019//! A class that enables the
    21 class Billboard :  public Element2D
     20class ImagePlane :  public Element2D
    2221{
    2322
    2423  public:
    25     Billboard(const TiXmlElement* root = NULL);
    26     virtual ~Billboard();
     24    ImagePlane(const TiXmlElement* root = NULL);
     25    virtual ~ImagePlane();
    2726
    2827    void init();
     
    3837
    3938  private:
    40     Material*        material;             //!< a material for the Billboard
     39    Material*        material;             //!< a material for the ImagePlane
    4140    float            rotationSpeed;        //!< Speed of the Rotation.
    4241
     
    4544};
    4645
    47 #endif /* _BILLBOARD_H */
     46#endif /* _IMAGE_PLANE_H */
Note: See TracChangeset for help on using the changeset viewer.