Superstorm4242's blog

By Superstorm4242, history, 6 years ago, In English

How to find the center of a circumscribed circle of a polygon? The polygon is convex of course.

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
6 years ago, # |
  Vote: I like it +6 Vote: I do not like it

Maybe you are looking for minimum enclosing circle. There is a source code in our teams' reference document.

Our implementation is from this document.

If you are looking for circumscribed circle of triangle, there is method called mCC in our team reference document.