diff options
author | Keuin <[email protected]> | 2022-04-15 14:10:32 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-04-15 14:10:32 +0800 |
commit | 45e6aaf69dae2c6f823b72057e6a918a18c0d87d (patch) | |
tree | 6ddb8d5ad994a5d3dfea086595cbe52226be3f6d | |
parent | 09c233e4f4af81981d72f10691153d318c83c9fd (diff) |
Include vec.h.
-rw-r--r-- | material.h | 1 | ||||
-rw-r--r-- | material_diffusive.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -5,6 +5,7 @@ #ifndef RT_MATERIAL_H #define RT_MATERIAL_H +#include "vec.h" #include "object.h" class object; diff --git a/material_diffusive.cpp b/material_diffusive.cpp index b312246..2a554d0 100644 --- a/material_diffusive.cpp +++ b/material_diffusive.cpp @@ -2,6 +2,7 @@ // Created by Keuin on 2022/4/15. // +#include "vec.h" #include "material.h" |