Написал 6е задание на вычислительную геометрию, задача наименьшего круга по алгоритму Велзля

This commit is contained in:
AZEN-SGG 2024-12-08 22:18:24 +03:00
parent 6e9934a2d8
commit b36187b77d
18 changed files with 264 additions and 1 deletions

View file

@ -0,0 +1,11 @@
#ifndef TOOLS
#define TOOLS
#include <stdio.h>
#include <stdlib.h>
#include "types.h"
FILE * getFile(void);
points getPoints(FILE * file);
#endif