diff --git a/libs/geom/include/psemek/geom/cylinder.hpp b/libs/geom/include/psemek/geom/cylinder.hpp new file mode 100644 index 00000000..a1c0e425 --- /dev/null +++ b/libs/geom/include/psemek/geom/cylinder.hpp @@ -0,0 +1,17 @@ +#pragma once + +#include +#include + +namespace psemek::geom +{ + + template + struct cylinder + { + point center; + vector axis; + T radius; + }; + +}