2021年5月18日
摘要: 定义 点与向量 struct Point { double x, y; Point() {} Point(double x, double y) :x(x), y(y) {} }; typedef Point Vector; 线段与直线 struct Segment { Point a, b; Se 阅读全文
posted @ 2021-05-18 21:41 ArrogHie 阅读(833) 评论(0) 推荐(1) 编辑