GraphicsPath intersections

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • PJ6

    #1

    GraphicsPath intersections

    What's the most effcient way to determine the intersecting point(s) of two
    graphics paths?

    Paul


  • Ken Tucker [MVP]

    #2
    Re: GraphicsPath intersections

    Hi,

    Create a region from one of the graphics paths. I think the
    region's intersect method will get the points.

    http://msdn2.microsoft.com/en-us/library/b1a3xbhd.aspx

    Ken
    -------------------
    "PJ6" <nobody@nowhere .net> wrote in message
    news:%231NMnpcL GHA.2992@tk2msf tngp13.phx.gbl. ..[color=blue]
    > What's the most effcient way to determine the intersecting point(s) of two
    > graphics paths?
    >
    > Paul
    >[/color]


    Comment

    • PJ6

      #3
      Re: GraphicsPath intersections

      I guess that will work. I'll have to verify that the Data property gives me
      what I'm looking for.

      Thanks,
      Paul

      "Ken Tucker [MVP]" <vb2ae@bellsout h.net> wrote in message
      news:eYV9HzdLGH A.2828@TK2MSFTN GP12.phx.gbl...[color=blue]
      > Hi,
      >
      > Create a region from one of the graphics paths. I think the
      > region's intersect method will get the points.
      >
      > http://msdn2.microsoft.com/en-us/library/b1a3xbhd.aspx
      >
      > Ken
      > -------------------
      > "PJ6" <nobody@nowhere .net> wrote in message
      > news:%231NMnpcL GHA.2992@tk2msf tngp13.phx.gbl. ..[color=green]
      >> What's the most effcient way to determine the intersecting point(s) of
      >> two graphics paths?
      >>
      >> Paul
      >>[/color]
      >
      >[/color]


      Comment

      Working...