List<Sample> getSamples(int x, int y)

Returns a collection of samples for the given pixel.

Source

List<Sample> getSamples(int x, int y) {
  var sample = new Sample(new Vector2(0.5,0.5), 1.0);
  return [sample];
}