资源简介
没办法,没有积分只好上传点东西。计算缓和曲线的代码C++
代码片段和文件信息
// DPoint.cpp: implementation of the CDPoint class.
//
//////////////////////////////////////////////////////////////////////
#include “stdafx.h“
#include “Route.h“
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CDPoint::CDPoint()
{
p = .0;
q = .0;
r = .0;
}
CDPoint::CDPoint(double x double y double z)
{
p = x;
q = y;
r = z;
}
CDPoint::~CDPoint()
{
}
CDPoint2D::CDPoint2D()
{
p = .0;
q = .0;
}
CDPoint2D::CDPoint2D(double x double y)
{
p = x;
q = y;
}
CDPoint2D::CDPoint2D(const CDPoint2D &pt)
{
p = pt.p;
q = pt.q;
}
CDPoint2D& CDPoint2D::operator =(const CDPoint2D &pt)
{
p = pt.p;
q = pt.q;
return *this;
}
CDPoint2D::~CDPoint2D()
{
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 953 2002-06-01 13:42 RouteReckon\DPoint.cpp
文件 452 2002-06-01 08:32 RouteReckon\DPoint2D.cpp
文件 2533 2002-06-07 13:33 RouteReckon\ReadMe.txt
文件 383 2002-06-07 13:33 RouteReckon\Resource.h
文件 21785 2002-09-22 11:06 RouteReckon\Route.cpp
文件 3008 2002-09-20 15:10 RouteReckon\Route.h
文件 156 2002-06-07 13:33 RouteReckon\RouteReckon.clw
文件 1568 2002-06-07 13:33 RouteReckon\RouteReckon.cpp
文件 199 2002-06-07 13:33 RouteReckon\RouteReckon.def
文件 131072 2002-09-20 15:11 RouteReckon\RouteReckon.dll
文件 4415 2002-06-07 15:24 RouteReckon\RouteReckon.dsp
文件 545 2002-06-07 13:33 RouteReckon\RouteReckon.dsw
文件 66048 2004-03-22 10:07 RouteReckon\RouteReckon.opt
文件 1359 2003-12-15 14:19 RouteReckon\RouteReckon.plg
文件 3095 2002-06-07 13:33 RouteReckon\RouteReckon.rc
文件 922 2002-09-12 12:42 RouteReckon\RouteReckon.sln
文件 5057 2002-09-12 12:42 RouteReckon\RouteReckon.vcproj
文件 213 2002-06-07 13:33 RouteReckon\StdAfx.cpp
文件 1447 2002-06-07 13:33 RouteReckon\StdAfx.h
文件 403 2002-06-07 13:33 RouteReckon\res\RouteReckon.rc2
文件 7085 2008-11-05 18:00 RouteReckon\Debug\BuildLog.htm
文件 13433 2002-09-20 15:11 RouteReckon\Debug\DPoint.obj
文件 6498 2002-09-20 15:11 RouteReckon\Debug\DPoint2D.obj
文件 118425 2002-09-20 15:11 RouteReckon\Debug\Route.obj
文件 131072 2002-09-20 15:11 RouteReckon\Debug\RouteReckon.dll
文件 5640 2002-09-20 15:11 RouteReckon\Debug\RouteReckon.exp
文件 600644 2002-09-20 15:11 RouteReckon\Debug\RouteReckon.ilk
文件 10094 2002-09-20 15:11 RouteReckon\Debug\RouteReckon.lib
文件 12187 2002-09-12 12:42 RouteReckon\Debug\RouteReckon.obj
文件 2870272 2002-09-20 15:11 RouteReckon\Debug\RouteReckon.pdb
............此处省略13个文件信息
评论
共有 条评论