42 unsigned int Column, uint_least32_t UpperLeft,
43 uint_least32_t UpperRight,
44 uint_least32_t LowerLeft,
45 uint_least32_t LowerRight)
const noexcept
48 assert(Column < Size);
49 return (UpperLeft * InterpolationTable [Row] [Column].UpperLeft +
50 UpperRight * InterpolationTable [Row] [Column].UpperRight +
51 LowerLeft * InterpolationTable [Row] [Column].LowerLeft +
52 LowerRight * InterpolationTable [Row] [Column].LowerRight) /