Typo in list of documentation typedefs

I get a double defined ID (when running xmllint on the output) regarding the Vector_3 typedef.
In my opinion the second definition should be Vector_2 and not Vector_3.
This commit is contained in:
albert-github 2020-11-29 12:57:31 +01:00
parent 869833136d
commit 6b0cba883b
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public:
/// The circle type, only required if you want to detect tori
typedef unspecified_type Circle_2;
/// The 2D vector type, only required if you want to detect tori
typedef unspecified_type Vector_3;
typedef unspecified_type Vector_2;
/// The number type of the Cartesian coordinates of types Point_3
typedef unspecified_type FT;