set_line(line_t(point_t(0.4, 0.2),point_t(0.2, 0.5)));set_line(line_t{point_t{0.4, 0.2},point_t{0.2, 0.5}}); // wrong identationWhat, exactly, is wrong about that indentation? What would you like to see there, and why?
set_line(line_t{point_t{0.4, 0.2},
point_t{0.2, 0.5}});
Matthias