bbox.h

Mon, 18 Mar 2013 12:24:16 +0200

author
Santeri Piippo <crimsondusk64@gmail.com>
date
Mon, 18 Mar 2013 12:24:16 +0200
changeset 27
2ba799d294bc
parent 0
c51cce84a9ac
child 30
31ff9aabd506
permissions
-rw-r--r--

and of course I forget to update ldforge.pro... or to test compile for that matter

#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

mercurial