Browse Source

Update Example_-_Orientation_PointvsLine.c

Rudy Boudewijn van Etten 5 years ago
parent
commit
a819ec1658
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Example_-_Orientation_PointvsLine.c

+ 2 - 0
Example_-_Orientation_PointvsLine.c

@@ -1,6 +1,8 @@
 
 
 #include "raylib.h"
 #include "raylib.h"
 
 
+// Return on which side of the line the point is. l-1 0= r=1
+// lineback x,y linefront x,y point x,y
 int orientation(int ax,int ay,int bx, int by, int cx, int cy);
 int orientation(int ax,int ay,int bx, int by, int cx, int cy);
 
 
 int main(void)
 int main(void)