摘要: #define LINEINTERSECT_CROSS(ps,pe,p) ((pe->x-ps->x)*(p->y-ps->y)-(p->x-ps->x)*(pe->y-ps->y)) typedef struct XPOINT32Ftag { double x; double y; XPOINT32Ftag(double _x, double _y) { ... 阅读全文
posted @ 2016-08-10 10:28 秋月的私语 阅读(562) 评论(0) 推荐(0) 编辑
摘要: #include #include #define _SnapSame(x1, x2, lfSnap) (0==lfSnap?x1==x2:fabs(x1-x2)x2-lfSnap) #define _SnapLarge2(x1, x2, lfSnap) (x1>x2+lfSnap) //-1在外面,0在上面,1在里面 int PtInRegionEx(dou... 阅读全文
posted @ 2016-08-10 10:26 秋月的私语 阅读(742) 评论(0) 推荐(0) 编辑
摘要: double CalcAngle(MyPoint first, MyPoint cen, MyPoint second) { double dx1, dx2, dy1, dy2; double angle; dx1 = first.x - cen.x; dy1 = first.y - cen.y; 阅读全文
posted @ 2016-02-23 16:29 秋月的私语 阅读(1172) 评论(0) 推荐(0) 编辑
摘要: 额外添加的对话框,需要初始化可以添加WM_SHOWWINDOW消息,快捷键是Ctrl + Shift + X; 然后在函数OnShowWindow(BOOL bShow, UINT nStatus)中添加对应的初始化代码即可。 当然,如果能够给其添加OnInitialDialog()函数也是极好的, 阅读全文
posted @ 2015-08-27 11:18 秋月的私语 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 直接上源代码:#include "stdafx.h"#include #include using namespace std;class CSaveByteToBmp{public: bool SaveDIB2Bmp(int fileNum, const CString& BMPFileNa... 阅读全文
posted @ 2015-08-18 17:21 秋月的私语 阅读(989) 评论(0) 推荐(0) 编辑
摘要: public Form1() { InitializeComponent(); label1.Font = new Font("隶书", 20, FontStyle.Bold); //第一个是字体,第二个大小,第三个是样式, ... 阅读全文
posted @ 2015-08-11 13:33 秋月的私语 阅读(37182) 评论(0) 推荐(0) 编辑
摘要: 转载来自csdn资源下载,这里做记录。#include#include#include#include#define max(a,b) (((a)>(b))?(a):(b))#define min(a,b) (((a)>(b))?(b):(a))#define sign(x) ((x)>eps?1:... 阅读全文
posted @ 2015-08-05 11:13 秋月的私语 阅读(555) 评论(0) 推荐(0) 编辑
摘要: 但是这样有另一个问题 搜索蜘蛛完全读不到你的网站··· 阅读全文
posted @ 2015-05-19 13:20 秋月的私语 阅读(2301) 评论(0) 推荐(0) 编辑
摘要: /// /// 判断点和直线的位置关系 /// /// 直线上的一点 /// 直线上的另一点 /// 需要判断的点 /// private int JudgePointToLine... 阅读全文
posted @ 2015-03-19 10:59 秋月的私语 阅读(2660) 评论(0) 推荐(0) 编辑
摘要: /// /// 求两条线段的交点 /// /// /// /// /// /// /// /// /// ///... 阅读全文
posted @ 2015-03-16 15:33 秋月的私语 阅读(261) 评论(0) 推荐(0) 编辑