H A D | point.h | 33 Point() : smooth(false), visible(true) {} 34 Point(T x, T y) : smooth(false), visible(true), x(x), y(y) {} 35 Point(T x, T y, bool smooth) : smooth(smooth), visible(true), x(x), y(y) {} argument 54 bool smooth; member in struct:Tracer::Point 82 lhs.smooth == rhs.smooth &&
|