2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Merge pull request #1316 from andrjohns/catmull_rom-doc

Fix return type in catmull_rom doc
This commit is contained in:
Matt Borland
2025-08-29 13:49:00 +02:00
committed by GitHub

View File

@@ -24,7 +24,7 @@ namespace boost{ namespace math{
catmull_rom(std::initializer_list<Point> l, bool closed = false, typename Point::value_type alpha = (typename Point::value_type) 1/ (typename Point::value_type) 2);
Real operator()(Real s) const;
Point operator()(Real s) const;
Real max_parameter() const;