Add geom::cylinder deduction guides

This commit is contained in:
Nikita Lisitsa 2022-07-10 11:13:26 +03:00
parent 3b509fb358
commit bdb1a203ff

View file

@ -14,4 +14,7 @@ namespace psemek::geom
T radius;
};
template <typename T, std::size_t N>
cylinder(point<T, N>, vector<T, N>, T) -> cylinder<T, N>;
}