资源简介
在linux下面写的,WIN下面用的话把
typedef int32_t int32;
typedef uint32_t uint32;
改成
typedef __int32 int32;
typedef unsigned __int32 uint32;
代码片段和文件信息
//吓人的鸟
#include
#include
using namespace std;
typedef int32_t int32;
typedef uint32_t uint32;
struct Location {
int32 x;
int32 y;
Location() { x=0 y=0; }
Location(int32 a int32 b) { x=a y=b; }
};
void Bresenham(int32 x1 int32 y1 int32 x2 int32 y2 vector& locationVec)
{
bool swapflag = false;
if (x1 > x2){
int32 tmpx = x1;
int32 tmpy = y1;
x1 = x2;
y1 = y2;
x2 = tmpx;
y2 = tmpy;
swapflag = true;
}
int32 dx = x2-x1;
int32 dy = y2-y1;
int32 x = x1;
int32 y = y1;
int32 sub = (dy<<1)-dx;
locationVec.push_back(Location(x y));
while(x ++x;
if (sub > 0){
sub += (dy<<1) - (dx<<1);
++y;
}else {
sub += (dy<<1);
}
locationVec.push_back(Location(x y));
}
if (swapflag){
uint32 size = locationVec.size();
for (uint32 i = 0; i < size/2 ; ++i){
Location tmp = locationVec[i];
locationVec[i] = locationVec[size-i-1];
locationVec[size-i-1] = tmp;
}
}
}
void CalcShortestDistance(const Location& startPos const Location& endPos vector& locationVec)
{
if (startPos.x==endPos.x && startPos.y==endPos.y)
return ;
if (endPos.x == startPos.x){ //x相同
if (endPos.y > startPos.y){
for (uint32 i = 0; i < (uint32)(endPos.y-startPos.y); ++i){
loca
- 上一篇:PSO—SVM
- 下一篇:WebPage.h和WebPage.cpp
相关资源
- DDA算法、中点bresenham算法及bresenham算
- 圆的扫描转换,中点bresenham画圆算法
- mfc数值微分算法和Bresenham算法画直线
- 鼠标交互画圆及椭圆基于Bresenham、中
- VC++ Bresenham Midpoint 算法画线圆椭圆
- c++ 、MFC 实现中点画圆算法及工程代码
- DDA、中点画线法、Bresenham算法
- Bresenham画线连成多边形并填充
- 计算机图形学 中点画椭圆法 Bresenha
- Bresenham画圆算法和中点圆整数优化算
- 计算机图形学直线段的扫描转换C++实
- 完全Bresenham算法生成椭圆
- 基于VC6.0的Bresenham直线算法
- MFC画线三种算法包括画圆,画点
- 计算机图形学大实验直线DDA和bresenh
- MFC中点画圆Bresenham算法画圆
- vc++实现bresenham生成直线
- c++ OpenGL DDA/Bresenham 算法画直线, 多
评论
共有 条评论