public void setEqual(SliceProps o)
 {
     r         = o.r;
     ir        = o.ir;
     h         = o.h;
     bA        = o.bA;
     eA        = o.eA;
     texColumn = o.texColumn;
 }
 public bool compare(SliceProps o)
 {
     return(r == o.r &&
            ir == o.ir &&
            h == o.h &&
            bA == o.bA &&
            eA == o.eA &&
            texColumn == o.texColumn);
 }
 void Awake()
 {
     props = new SliceProps();
     lastProps = new SliceProps();
 }
 public void setEqual(SliceProps o)
 {
     r  = o.r;
     ir = o.ir;
     h  = o.h;
     bA = o.bA;
     eA = o.eA;
     texColumn = o.texColumn;
 }
 public bool compare(SliceProps o)
 {
     return r == o.r &&
         ir == o.ir &&
         h  == o.h  &&
         bA == o.bA &&
         eA == o.eA &&
         texColumn == o.texColumn;
 }
 void Awake()
 {
     props     = new SliceProps();
     lastProps = new SliceProps();
 }