upperLowerBounds/src/methods/parallelogram/parellelogram.h

11 lines
293 B
C++

#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