| 1 | #include "data.h" |
| 2 | |
| 3 | FaceData::FaceData() |
| 4 | { |
| 5 | rotation = new double[3]{ 0,0,0 }; |
| 6 | translation = new double[3]{ 0,0,0 }; |
| 7 | face_coords = new int[4]{ 0,0,0,0 }; |
| 8 | face_detected = false; |
| 9 | } |
| 10 | |
| 11 | |
| 12 | std::string FaceData::to_string() |
nothing calls this directly
no outgoing calls
no test coverage detected