c# - Getting All Of The Points In An Existing Curve? -
I am using the zodgraph and want to know how I can find a complete curve versus digit.
foreach (Various curves in graphpane) {foreach (point point in curve. ???) {Console.WriteLine (Point.X + "+ Point.Y); //
How can I do this?
(Based on the docs), try to do something like this:
foreach (var curve in graphpen.) {For (Int i = 0; i & lt; curve.Points.Count; i ++) {var pt = curve.points [i]; console.light line (PTX + "+ + PTY);}}
Comments
Post a Comment