예제 #1
0
        //----------------------------------------------------------------------------

        static public Size3     CeilingToBase(Size3 size, int b)
        {
            return(new Size3(
                       Math2.CeilingToBase(size.Width, b),
                       Math2.CeilingToBase(size.Height, b),
                       Math2.CeilingToBase(size.Depth, b)));
        }