Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2853 in orxonox.OLD for orxonox/trunk/src/array.h


Ignore:
Timestamp:
Nov 14, 2004, 6:41:02 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk/src: merged importer to trunk again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/array.h

    r2835 r2853  
     1/*!
     2  \file array.h
     3  \brief Contains the Array Class that handles float arrays.
     4  this class creates a Array of a semi-Dynamic length.
     5  beware, that after finalizing the array may not be resized again.
     6*/
     7
    18#ifndef _ARRAY_H
    29#define _ARRAY_H
    310
    4 extern int verbose;
     11extern int verbose; //!< will be obsolete soon
    512
    613#include <GL/gl.h>
    714#include <GL/glu.h>
    815#include <fstream>
     16
     17
     18//! Array Class that handles dynamic-float arrays.
    919class Array
    1020{
    1121 public:
    1222  Array ();
     23  ~Array();
    1324
    14   void createArray ();
     25  void initializeArray ();
    1526  void finalizeArray (void);
    1627  void addEntry (GLfloat entry);
Note: See TracChangeset for help on using the changeset viewer.