2011-m2s3-city-builder/rules/etage.hh
Georges Dupéron 46f1cf4e43 Refactor.
2012-01-19 21:25:29 +01:00

21 lines
370 B
C++

#ifndef _RULES_ETAGE_HH_
#define _RULES_ETAGE_HH_
#include "all_includes.hh"
class EtageQuad : public Chose {
private :
Quad c;
Quad ch;
bool we, ws, ww, wn;
public :
EtageQuad(Quad c, Quad ch, bool we=true, bool ws=true, bool ww=true, bool wn=true);
virtual bool split();
virtual void triangulation();
virtual void getBoundingBoxPoints();
};
#endif