hexagon logo

intersection of two circles

is there a way to create the point where the outside diameter of two circles intersect?
Parents
  • Find the point where 2 circles "touch".

    cir1 and cir2

    create line (lin1) from cir1 to cir2

    create pierce point (pnt1) from lin1 and cir2

    create line (lin2) from cir2 to cir1

    create pierce point (pnt2 ) from lin2 and cir1

    if pnt1 and pnt2 are the same, you have found the point where the circles "touch".



    By definition, it's the right solution !
    There will be probably a uncertainty causes by the bad definition of circles on a little angle...
Reply
  • Find the point where 2 circles "touch".

    cir1 and cir2

    create line (lin1) from cir1 to cir2

    create pierce point (pnt1) from lin1 and cir2

    create line (lin2) from cir2 to cir1

    create pierce point (pnt2 ) from lin2 and cir1

    if pnt1 and pnt2 are the same, you have found the point where the circles "touch".



    By definition, it's the right solution !
    There will be probably a uncertainty causes by the bad definition of circles on a little angle...
Children