small stuff

This commit is contained in:
aap
2017-08-21 14:40:19 +02:00
parent 4653f7e81e
commit 588d86e79a
2 changed files with 17 additions and 10 deletions

View File

@@ -262,6 +262,18 @@ inline void convMatrix(RawMatrix *dst, Matrix *src){
dst->posw = 1.0;
}
struct Line
{
V3d start;
V3d end;
};
struct Rect
{
int32 h, w;
int32 x, y;
};
struct Sphere
{
V3d center;