bbox.h@a6732098fed8
bbox.h
Sat, 16 Mar 2013 13:08:24 +0200
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Sat, 16 Mar 2013 13:08:24 +0200
- changeset 18
- a6732098fed8
- parent 0
-
c51cce84a9ac
- child 30
-
31ff9aabd506
- permissions
- -rw-r--r--
Convert the static getCoordinateRep to a common ftoa, use this function to get proper coordinate representation when converting objects to LDraw code
#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