Example:

``` pub fn main() {

let minheightminwidthprice = 50.0; // Min All let minheightmaxwidthprice = 60.0; // Max Width let maxheightminwidthprice = 70.0; // Max Height let maxheightmaxwidthprice = 80.0; // Max All, let minh = 1.0; let maxh = 5.0; let minw = 1.0; let maxw = 4.0; let stepw = 0.5; let steph = 0.5;

let mut prices = CulcPrices::new( &minheightminwidthprice, &minheightmaxwidthprice, &maxheightminwidthprice, &maxheightmaxwidthprice, &minh, &maxh, &minw, &maxw, &stepw, &steph );

prices.culcpricestable(false); println!("\n{}", prices); prices.culcpricestable(true); println!("\n{}", prices);

} ```

Output:

``` 50.00 51.67 53.33 55.00 56.67 58.33 60.00 52.50 54.17 55.83 57.50 59.17 60.83 62.50 55.00 56.67 58.33 60.00 61.67 63.33 65.00 57.50 59.17 60.83 62.50 64.17 65.83 67.50 60.00 61.67 63.33 65.00 66.67 68.33 70.00 62.50 64.17 65.83 67.50 69.17 70.83 72.50 65.00 66.67 68.33 70.00 71.67 73.33 75.00 67.50 69.17 70.83 72.50 74.17 75.83 77.50 70.00 71.67 73.33 75.00 76.67 78.33 80.00

H/W 1.00 1.50 2.00 2.50 3.00 3.50 4.00 1.00 50.00 51.67 53.33 55.00 56.67 58.33 60.00 1.50 52.50 54.17 55.83 57.50 59.17 60.83 62.50 2.00 55.00 56.67 58.33 60.00 61.67 63.33 65.00 2.50 57.50 59.17 60.83 62.50 64.17 65.83 67.50 3.00 60.00 61.67 63.33 65.00 66.67 68.33 70.00 3.50 62.50 64.17 65.83 67.50 69.17 70.83 72.50 4.00 65.00 66.67 68.33 70.00 71.67 73.33 75.00 4.50 67.50 69.17 70.83 72.50 74.17 75.83 77.50 5.00 70.00 71.67 73.33 75.00 76.67 78.33 80.00 ```