-
primer
学CAGD的人都值得一看的一本英文版本教材C++ primer(CAGD people are worth learning the English version of a textbook,)
- 2010-12-15 12:59:07下载
- 积分:1
-
VC++
- 2022-02-06 21:29:44下载
- 积分:1
-
programming-game-ai-by-example.9781556220784
This easy-to-follow book provides a comprehensive and practical introduction to the basic AI techniques used by game developers, leading you through the process of designing, programming, and implementing intelligent agents for action games using C++.
- 2009-12-30 01:59:41下载
- 积分:1
-
digitalprocessingusingClanguage
很全的数字信号C语言资料,包括:数字信号的产生,数字信号处理(FFT计算等),快速离散正交变换,快速卷积与相关,数字滤波器的时域和频域相应,IIR数字滤波器的设计,FIR数字滤波器的设计,以及谱估计,数字图像处理,人工神经网络方面的内容(The digital signal is full C language, including: the emergence of digital signal, digital signal processing (FFT calculation, etc.), fast discrete orthogonal transform, fast convolution and correlation, digital filter in time domain and corresponding frequency domain, IIR digital filter design, FIR digital filter design, as well as the spectral estimation, digital image processing, artificial neural network aspects)
- 2020-07-04 03:00:02下载
- 积分:1
-
OpenGL_Programming_Guide
Ebook program guide OpenGL
- 2009-08-25 10:58:46下载
- 积分:1
-
C-language-comprehensive-training
C语言综合训练,包含文件调用、添加还有一些汇总统计等(C language integrated training, including file calls, add some summary statistics)
- 2014-01-02 15:42:40下载
- 积分:1
-
VC
说明: C专家编程以及如何写出高效优美的C语言代码(Expert C programming and how to write elegant and efficient C-language code)
- 2008-05-30 07:30:46下载
- 积分:1
-
基于mfc和opengl点云数据读取 MFCPopengl
基于mfc和opengl点云数据读取,于实测的点云数据,根据目前建筑点云显示方面的需求,需要通过平台展示点云成果。本文应用MFC
单文档和Open GL可实现点云数据的显示、缩放、压缩等效果,数据采用嘉荫县恐龙模型点云数据,经实验表明,采用MFC单文档和Open GL在点云显示编辑方面-g-.有较强大的功能,可作为成果展示的途径。
(Based on the practical surveyed poin cloud data,according to the acquirements of visualization of point c
loud of buildings,it is necessary to
visualize point cloud results through platform.This paperr ealized the functions of display,zoom。and compress point cloud data based
on MFC document and OpenGL.)
- 2017-04-13 15:59:02下载
- 积分:1
-
VC++ 设置打印图形的位置
VC++ 6.0 设置打印图形的位置,实现所见即所得的打印功能。
if(pDC->IsPrinting())//判断是否因打印或打印预览而调用OnPrepareDC()函数
{
pDC->SetViewportOrg(250,400);//设置视口坐标原点
}
//以下为显示和打印的内容
pDC->TextOut(10,10,"实现所见即所得的打印");
pDC->SetBkMode(TRANSPARENT);
pDC->Rectangle(10,40,310,350);
pDC->Ellipse(50,50,210,220);
pDC->Ellipse(70,240,280,320)
//设置映射模式
pDC->SetMapMode(MM_ANISOTROPIC);
CSize winSize = CSize(1024,768);
pDC->SetWindowExt(winSize); //设定窗口大小
//得到实际设备每逻辑英寸的像素数量
int xLogPixPerInch,yLogPixPerInch;
xLogPixPerInch=pDC->GetDeviceCaps(LOGPIXELSX);
yLogPixPerInch=pDC->GetDeviceCaps(LOGPIXELSY);
//得到设备坐标和逻辑坐标的比例
以下是实现打印:
int xExt,yExt;
xExt=winSize.cx*600/xLogPixPerInch; //按照打印机扩大视口
yExt=winSize.cy*600/yLogPixPerInch;
pDC->SetViewportExt(xExt,yExt); //设定视口大小
- 2022-01-27 16:52:24下载
- 积分:1
-
comp
编译原理的答案,很全的。著名的龙书。非常非常的详细。(Compiler theory the answer is the whole. The famous Dragon book.)
- 2010-11-16 18:13:41下载
- 积分:1