コード例 #1
0
 /// <summary>
 /// Compress this matrix using the crusher it was previously created with.
 /// </summary>
 /// <returns></returns>
 public CompressedMatrix Compress()
 {
     return(crusher.Compress(this));
 }
コード例 #2
0
 /// <summary>
 /// Compress this matrix using the crusher it was previously created with.
 /// </summary>
 /// <returns></returns>
 public void Compress(CompressedMatrix nonalloc)
 {
     crusher.Compress(nonalloc, this);
 }