upperLowerBounds/src/methods/parallelogram/parellelogram.h

11 lines
293 B
C
Raw Normal View History

2019-09-26 20:30:46 +00:00
#ifndef PARALLELOGRAM_H
#define PARALLELOGRAM_H
#include <iostream>
#include <math.h>
static auto parall_calc_area(float max_error, float b=0.0f, float h=0.0f, float a=0.0f)->float;
static auto parall_calc_perimeter(float max_error, float b=0.0f, float h=0.0f, float p=0.0f)->float;
#endif