Query about GraphicsPath.Flatten() method

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • farooq.omar@gmail.com

    #1

    Query about GraphicsPath.Flatten() method

    Is there a way to specify to Flatten() method as to how many points it
    should return. example I just want the Flatten() method to give back
    100 points (basicallt gp.PointCount== 100).
    Thanks

  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: Query about GraphicsPath.Fl atten() method

    I imagine that the number of points that are returned is going to be
    equal to the number of points that already exist in the path. I can't see
    how points would be added or removed when calling Flatten. So if your path
    is made up of one hundred points, it will still have one hundred points
    after Flatten is called.

    --
    - Nicholas Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    <farooq.omar@gm ail.comwrote in message
    news:1193979681 .629410.195100@ e9g2000prf.goog legroups.com...
    Is there a way to specify to Flatten() method as to how many points it
    should return. example I just want the Flatten() method to give back
    100 points (basicallt gp.PointCount== 100).
    Thanks
    >

    Comment

    Working...