mirror of
https://gitlab.com/Trygve/contour-creator.git
synced 2024-11-17 12:10:14 +00:00
Forgot to change int to uint8_t in Point constructor
This commit is contained in:
parent
08dce8eb7e
commit
b3936ae649
@ -36,7 +36,7 @@ class Point
|
|||||||
int y;
|
int y;
|
||||||
uint8_t mscase; //!< The case outputted by the algorithm. A number between 0 and 15
|
uint8_t mscase; //!< The case outputted by the algorithm. A number between 0 and 15
|
||||||
bool allocated = false; //!< Used when sorting the points to see if it has been sorted
|
bool allocated = false; //!< Used when sorting the points to see if it has been sorted
|
||||||
Point(int x, int y, int mscase){
|
Point(int x, int y, uint8_t mscase){
|
||||||
this -> x = x;
|
this -> x = x;
|
||||||
this -> y = y;
|
this -> y = y;
|
||||||
this -> mscase = mscase;
|
this -> mscase = mscase;
|
||||||
|
Loading…
Reference in New Issue
Block a user