comp20003-project02/geometry.c

24 lines
491 B
C
Raw Normal View History

/* geometry.c
*
* Created by Rory Healy (healyr@student.unimelb.edu.au)
* Created on 9th September 2021
* Last modified 9th September 2021
*
* A small library of functions used in the geometric construction of a
* Voronoi diagram.
*
*/
#ifndef GEOMETRY_HEADER
#include "geometry.h"
#endif
#ifndef COMMON_HEADER
#include "common.h"
#endif
char *getBisectorEquation(vertex_t *vertexA, vertex_t *vertexB) {
printf("x: %lf y: %lf\n", vertexA->x, vertexB->y);
return "hi";
}