Блог пользователя toxic_hack

Автор toxic_hack, история, 4 года назад, По-английски

I've been wanting some good easy to use geometry struct for a long time (in C++). It seems to be impossible to find. Everything that I see either doesn't contain enough functions or is very tough to use. It will be very useful if any of you could share your geometry library with me. Thanks

  • Проголосовать: нравится
  • +21
  • Проголосовать: не нравится

»
4 года назад, # |
  Проголосовать: нравится +190 Проголосовать: не нравится

My geometry library after 2 years of programming.

Spoiler
»
4 года назад, # |
  Проголосовать: нравится +31 Проголосовать: не нравится

I think KACTL is a concise and reliable geometry library. You can find it here

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Thanks for sharing this. Do you have everything written in a single file so that I can use it for my ICPC booklet?

»
4 года назад, # |
  Проголосовать: нравится +15 Проголосовать: не нравится

The Stanford ICPC notebook contains a good geometry library, in a single file. You can find it here

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

This is the best library that I have seen. I took it from my senior's booklet. I hope it will be helpful to someone

»
4 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

This tutorial by Al.Cash is really awesome. Check it out. He has given code snippets along with tutorial.