Написал 10ю задачу по Геометрии

This commit is contained in:
AZEN-SGG 2024-12-15 13:42:03 +03:00
parent 19e0da8dc6
commit 241b43fa19
20 changed files with 432 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#ifndef TOOLS
#define TOOLS
#include <stdio.h>
#include <stdlib.h>
#include "types.h"
FILE * getFile(void);
points getPoints(FILE * file);
double getShift(void);
void printPolygon(polygon plgn, const char * str);
#endif