Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 2, 2005, 1:37:53 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: doxygen-tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/importer/material.h

    r4370 r4466  
    1515
    1616#ifndef NULL
    17 #define NULL 0
     17#define NULL 0            //!< a pointer to NULL
    1818#endif
    1919
    2020// FORWARD DEFINITIONS //
    2121class Texture;
    22 
    2322
    2423//! Class to handle Materials.
     
    4645  void setTransparency (char* trans);
    4746
    48 
    49  
    50   static void addTexturePath(const char* pathName);
    5147 // MAPPING //
    5248  void setDiffuseMap(const char* dMap);
     
    5551  void setBump(const char* bump);
    5652
     53  static void addTexturePath(const char* pathName);
     54
    5755 private:
    58   char* name;        //!< The Name of the Material.
    59   int illumModel;    //!< The IlluminationModel is either flat or smooth.
    60   float diffuse [4]; //!< The diffuse color of the Material.
    61   float ambient [4]; //!< The ambient color of the Material.
    62   float specular [4];//!< The specular color of the Material.
    63   float shininess;   //!< The shininess of the Material.
    64   float transparency;//!< The transperency of the Material.
     56  char*       name;             //!< The Name of the Material.
     57  int         illumModel;       //!< The IlluminationModel is either flat or smooth.
     58  float       diffuse [4];      //!< The diffuse color of the Material.
     59  float       ambient [4];      //!< The ambient color of the Material.
     60  float       specular [4];     //!< The specular color of the Material.
     61  float       shininess;        //!< The shininess of the Material.
     62  float       transparency;     //!< The transperency of the Material.
    6563
    66   Texture* diffuseTexture; //!< The diffuse texture of the Material.
    67   Texture* ambientTexture; //!< The ambient texture of the Material.
    68   Texture* specularTexture;//!< The specular texture of the Material.
     64  Texture*    diffuseTexture;  //!< The diffuse texture of the Material.
     65  Texture*    ambientTexture;  //!< The ambient texture of the Material.
     66  Texture*    specularTexture;  //!< The specular texture of the Material.
    6967};
    7068#endif
Note: See TracChangeset for help on using the changeset viewer.