This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
MemMAPR-MKR/src/Form.cpp
2025-05-15 23:26:58 +03:00

39 lines
636 B
C++

#include "Form.hpp"
size_t Form::counter = 0;
double Form::Function(double, double) {
return 0;
}
std::pair<double, double> Form::Second_Deriative(double, double) {
return { 0, 0 };
}
std::pair<double, double> Form::size() {
return { 0, 0 };
}
bool Form::Inhere(double, double) {
return false;
}
std::pair<double, double> Form::missX(double) {
return { 0, 0 };
}
std::pair<double, double> Form::missY(double) {
return { 0, 0 };
}
Form::Form() {
id = counter++;
excluded = false;
bound_type = -1;
}
bool Form::Excluded() const {
return excluded;
}
int Form::GetB() { return bound_type; }