pmc/include/cube.h
author Emilio Largo <largo@largo.homelinux.org>
Thu, 16 Apr 2009 12:49:12 +0200
changeset 45 7197576fedcf
parent 43 cf8c1b5127b2
child 54 c064ce9f40f5
permissions -rw-r--r--
pmc: namespace algebra for vector -> the namespace prevents clashes with std::vector -> std::vector and algebra::Vector with capital V. md5: a md5 replacement ncurses: keypad function added committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * test/demos/pmc/include/cube.h
 * Copyright (C) 2008 Markus Broeker
 */

#ifndef _CUBE_H
#define _CUBE_H

#include <surface.h>
#include <vector.h>
#include <rectangle.h>

class Cube:public Drawable {
  private:
    algebra::Vector * P[8];
    int height;

  public:
    Cube (Surface *, algebra::Vector &, algebra::Vector &, algebra::Vector &, algebra::Vector &, int);
    Cube (Surface *, algebra::Vector[4], int);
    Cube (Surface *);

    virtual ~ Cube ();
    void show ();
    void move (algebra::Vector);
};
#endif