Build() public method

public Build ( BitStream32 B, short blockSize ) : void
B BitStream32
blockSize short
return void
Esempio n. 1
0
 public static BitmapFromBitStream GetRRR_wt(short sample_step)
 {
     return delegate (FakeBitmap b) {
         var rs = new RRR ();
         rs.Build (b.B, sample_step);
         return rs;
     };
 }
Esempio n. 2
0
 public static BitmapFromList GetRRR(short block_size)
 {
     return delegate (IList<int> L) {
         var rs = new RRR ();
         rs.Build (L, block_size);
         return rs;
     };
 }