kasperpeulen / euclidthegame

A geometry game based on Euclid's Elements.
euclidthegame.org
MIT License
447 stars 74 forks source link

Level 19 Correct solution isn't accepted. #283

Open densokolov opened 10 years ago

densokolov commented 10 years ago

Solution:

  1. Make ray from B to A.
  2. Make intersect of this ray and circle (point C).
  3. Make circle with radius BC and center in A.
  4. Make intersect of ray and new circle (point D). This point will be the center of second required circle.
  5. Make equilateral triangle with AD segment as a base. We will get center of third required circle(point E).
  6. Draw two circles with AB radius and centers in D and E.

I think, it is correct solution, but program doesn't accept it.

leftysrevenge commented 10 years ago

That's a valid solution. Just as turning the solution 90° yields a good (yet unaccepted) solution.