Beispiel #1
0
 public bool GetFlatDimensions(ParameterStack stack, ref double length, ref double width, ref double height)
 {
     if (null != _ext3 && _ext3.IsSupportingFlatPalletization)
     {
         _ext3.FlatDimensions(ConvertIn(stack), out double[] dim);
         length = ConvertOut(dim[0]); width = ConvertOut(dim[1]); height = ConvertOut(dim[2]);
         return(true);
     }
     return(false);
 }
Beispiel #2
0
 public bool GetFlatDimensions(ParameterStack stack, ref double length, ref double width, ref double height)
 {
     if (null != _ext3 && _ext3.IsSupportingFlatPalletization)
     {
         double[] dim;
         _ext3.FlatDimensions(stack, out dim);
         length = dim[0]; width = dim[1]; height = dim[2];
         return(true);
     }
     return(false);
 }