This commit is contained in:
2026-02-15 19:53:55 +01:00
parent 2162b3eadd
commit 6a9a4cc27b
6 changed files with 35 additions and 27 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ size_t detect_points(struct point center, double range, struct point *interestin
for(size_t i = 0; i < nb_points; i++){
if(is_in_area(center, range,interesting_points[i]) == 1){
printf("{ %f, %f }\n",interesting_points[i].x, interesting_points[i].y);
printf("{%f, %f}\n",interesting_points[i].x, interesting_points[i].y);
found ++;
}
}