pub fn circumcenter<C: Coord + Vector<C>>(a: &C, b: &C, c: &C) -> Option<C>
Expand description

Calculates the circumcenter of a triangle, given it’s three vertices

Arguments

  • a - The first vertex of the triangle
  • b - The second vertex of the triangle
  • c - The third vertex of the triangle