Graphic Calculator: FIDocalcus
Проект трёх первокурсников (по инженерному практикуму в первом семестре) по созданию графического калькулятора на FLTK C++
Loading...
Searching...
No Matches
Math_calc::Segment Struct Reference

Вещественный отрезок More...

#include <math_base.h>

Public Member Functions

 Segment ()
 
 Segment (double _start, double _end)
 

Public Attributes

double end
 
double start
 

Detailed Description

Вещественный отрезок

Constructor & Destructor Documentation

◆ Segment() [1/2]

Math_calc::Segment::Segment ( double _start,
double _end )
inline
23 : start{_start}, end{_end} {
24 // (код ошибки таков, так как по сути length = end - start < 0)
25 if (start > end) throw std::invalid_argument("bad segment length");
26 }
double start
Definition math_base.h:32
double end
Definition math_base.h:32

◆ Segment() [2/2]

Math_calc::Segment::Segment ( )
inline
28: start{-0}, end{0} {}

Member Data Documentation

◆ end

double Math_calc::Segment::end

◆ start

double Math_calc::Segment::start

The documentation for this struct was generated from the following file: