Adding vis bool functions

This commit is contained in:
Noah L. Schrick 2022-03-07 14:52:44 -06:00
parent fdccad4af4
commit c23a853d54
7 changed files with 8 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -37,3 +37,8 @@ double Line::get_vis_end() const
{
return vis_end;
}
bool Line::is_vis()
{
return vis;
}

View File

@ -14,9 +14,11 @@ class Line
double get_vis_start() const;
double get_vis_end() const;
bool is_vis();
private:
double slope;
double ycept;
double vis_start;
double vis_end;
bool vis;
};