Code Style Update

- Everything is beautiful now
This commit is contained in:
2019-12-13 09:13:19 +01:00
parent 9f9315c8a4
commit fbffc331d4
8 changed files with 23 additions and 67 deletions

View File

@@ -12,7 +12,6 @@ public:
return (p1.x()-p3.x())*(p2.y()-p3.y())-(p2.x()-p3.x())*(p1.y()-p3.y());
}
static inline bool isInTriangle(QPoint& A, QPoint& B, QPoint& C, QPoint& P){
float val1, val2, val3;
bool neg, pos;