[Solved] finding equidistant point in triangle with vertices a, b and c. language is c
#include <stdio.h> #include <math.h> typedef struct point { double x, y; } Point; #if 0 ax + by = c Ax + By = C x = (c – by)/a = (C – By)/A Ac – Aby = aC – aBy (aB – Ab)y = aC – Ac y = (aC – Ac) / (aB … Read more