X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fgeometry%2Fsurfacepoint.h;fp=source%2Fgeometry%2Fsurfacepoint.h;h=3513ac8e41bf82e1a02e3250ccdfaebb57932576;hb=9260eee3126731c1e6b54ce3407be757d0d71716;hp=0000000000000000000000000000000000000000;hpb=6843cbaeaca73ecdbebe852b7e7899ce48f8a83c;p=libs%2Fmath.git diff --git a/source/geometry/surfacepoint.h b/source/geometry/surfacepoint.h new file mode 100644 index 0000000..3513ac8 --- /dev/null +++ b/source/geometry/surfacepoint.h @@ -0,0 +1,19 @@ +#ifndef MSP_GEOMETRY_SURFACEPOINT_H_ +#define MSP_GEOMETRY_SURFACEPOINT_H_ + +#include + +namespace Msp { +namespace Geometry { + +template +struct SurfacePoint +{ + LinAl::Vector position; + LinAl::Vector normal; +}; + +} // namespace Geometry +} // namespace Msp + +#endif