## Files to submit - [ ] in `ex03/` dir - [ ] Makefile - [ ] main.cpp - [ ] Fixed.{h, hpp} - [ ] Fixed.cpp - [ ] Point.{h, hpp} - [ ] Point.cpp - [ ] bsp.cpp ## Authorized - **roundf** from `<cmath>` ## Definition of done - [ ] created the `Point` class - [ ] private `Fixed` const attribute **x** - [ ] private `Fixed` const attribute **y** - [ ] public default constructor initializing **x** and **y** to 0 - [ ] public constructor taking two constant floating-point number as parameters, initializing **x** and **y** with it - [ ] public copy constructor - [ ] public copy assignment operator overload - [ ] public destructor - [ ] implement into `bsp.cpp` `bool bsp( Point const a, Point const b, Point const c, Point const point );` - [ ] own tests
Files to submit
ex03/dirAuthorized
<cmath>Definition of done
PointclassFixedconst attribute xFixedconst attribute ybsp.cppbool bsp( Point const a, Point const b, Point const c, Point const point );