I have a class Rectangle which has a method RandomPoint returning a random point within it. It looks like:
class Rectangle {
int W,H;
Random rnd = new Random();
public Point RandomPoint() {
return new Point(rnd.NextDouble() * W, rnd.NextDouble() * H);
}
}
But I hope it to be a IEnumerable<Point> so that I can use LINQ on it, e.g. rect.RandomPoint().Take(10).
How to implement it succinctly?
Pointa custom type or a one from the framework or a library? – Mark Byers Dec 17 '12 at 14:40