예제 #1
0
 public HeightProvider(ValueProvider2D <double> source)
 {
     this.source = source;
 }
예제 #2
0
 public CachingValueProvider2D(Vector2I offset, Vector2I size, ValueProvider2D <T> source)
 {
     this.source = source;
     this.offset = offset;
     this.size   = size;
 }