return faceforward, reflect and refract functions

This commit is contained in:
BlackMATov
2021-02-24 03:40:22 +07:00
parent e80f49133b
commit e95b9cf898
7 changed files with 67 additions and 1 deletions

View File

@@ -267,6 +267,9 @@ namespace vmath_hpp
template fix<float> cross(const fix2f&, const fix2f&);
template fix3f cross(const fix3f&, const fix3f&);
template fix2f normalize(const fix2f&);
template fix3f faceforward(const fix3f&, const fix3f&, const fix3f&);
template fix3f reflect(const fix3f&, const fix3f&);
template fix3f refract(const fix3f&, const fix3f&, fix<float>);
}
namespace vmath_hpp