FuthorclySLM 几何模板(参考了lrj黑书的知识)(未完善)
<br />//FuthorclySLM专用几何模板库
#include<iostream>
#include<cmath>
using namespace std;
const double eps = 1e-7;
struct Point
{
double x,y;
Point(const double &xt,const double &yt):x(xt),y(yt){}
double dist(const Point &next)
{
原创
2011-04-18 21:23:00 ·
872 阅读 ·
0 评论