
计算几何
文章平均质量分 81
安静de想着网名
300字以内
展开
-
HDU6354-Everything has changed【计算几何】
Edward is a worker for Aluminum Cyclic Machinery. His work is operating mechanical arms to cut out designed models. Here is a brief introduction of his work. Assume the operating plane as a two-dimen...原创 2018-08-06 23:42:54 · 299 阅读 · 0 评论 -
【计算几何,向量,圆】
struct Vector { double x, y; Vector() {} Vector(double a, double b) { x = a; y = b; } Vector operator-(Vector a) { return Vector(x - a.x, y - a.y); } Vector(Vector b, Vector a) { x...原创 2018-07-29 14:17:32 · 321 阅读 · 0 评论