bbox.h@d2d4d0154338
bbox.h
Mon, 18 Mar 2013 04:03:05 +0200
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Mon, 18 Mar 2013 04:03:05 +0200
- changeset 24
- d2d4d0154338
- parent 0
-
c51cce84a9ac
- child 30
-
31ff9aabd506
- permissions
- -rw-r--r--
added dummy action for future inlining command. Also GCC says that deleting instances of classes with virtual members but no virtual destructors is bad.
#ifndef __BBOX_H__
#define __BBOX_H__
#include "common.h"
class bbox {
public:
vertex v0;
vertex v1;
bbox ();
void calculate ();
private:
void checkVertex (vertex v);
};
#endif