摄影测量学基础所有编程汇集大全


摄影测量学基础(所有编程汇集大全)间后房交会 前方交会 相对定向 绝对定向 光束法 航带法等等全部编程
资源截图
代码片段和文件信息
#include “3DView.h“

VOID EnableOpenGL( HWND hWnd HDC * hDC HGLRC * hRC )
{
PIXELFORMATDEscriptOR pfd;
int iFormat;

// get the device context (DC)
*hDC = GetDC( hWnd );

// set the pixel format for the DC
ZeroMemory( &pfd sizeof( pfd ) );
pfd.nSize = sizeof( pfd );
pfd.nVersion = 1;
pfd.dwFlags = PFD_DRAW_TO_WINDOW | 
PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
pfd.iPixelType = PFD_TYPE_RGBA;
pfd.cColorBits = 24;
pfd.cDepthBits = 16;
pfd.ilayerType = PFD_MAIN_PLANE;
iFormat = ChoosePixelFormat( *hDC &pfd );
SetPixelFormat( *hDC iFormat &pfd );


*hRC = wglCreateContext( *hDC );
wglMakeCurrent( *hDC *hRC );
}

// Disable OpenGL

VOID DisableOpenGL( HWND hWnd HDC hDC HGLRC hRC )
{
wglMakeCurrent( NULL NULL );
wglDeleteContext( hRC );
ReleaseDC( hWnd hDC );


bool View3D::NewView()
{

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        869  2008-11-10 17:47  摄影测量程序3DView.cpp

     文件        239  2008-11-10 00:51  摄影测量程序3DView.h

     文件       9314  2008-12-16 11:05  摄影测量程序ActiveFun.cpp

     文件        501  2008-12-11 17:28  摄影测量程序ActiveFun.h

     文件        478  2008-10-23 19:55  摄影测量程序mp00001.bmp

     文件        249  2008-10-14 11:00  摄影测量程序Calculater.asp

     文件      33727  2008-12-16 11:08  摄影测量程序Calculater.cpp

     文件       3504  2008-12-15 13:41  摄影测量程序Calculater.h

     文件     160838  2008-10-10 17:24  摄影测量程序Cherry.ico

     文件        650  2008-10-09 20:22  摄影测量程序ChildView.cpp

     文件        213  2008-09-25 16:24  摄影测量程序ChildView.h

     文件       3592  2008-12-12 13:23  摄影测量程序Container.cpp

     文件       1227  2008-11-13 23:59  摄影测量程序Container.h

     文件       7503  2008-12-16 22:21  摄影测量程序dataLeft.txt

     文件       6381  2008-12-16 22:21  摄影测量程序dataRight.txt

     文件     104585  2008-12-16 22:22  摄影测量程序data光束法解算.txt

     文件        474  2008-10-28 12:34  摄影测量程序data控制点数据.ctl

     文件         65  2007-12-12 14:41  摄影测量程序data框标距.txt

     文件      69368  2008-12-16 22:22  摄影测量程序data相对定向解算.txt

     文件        414  2008-12-16 22:20  摄影测量程序data相片数据.pht

     文件        412  2008-11-11 00:16  摄影测量程序data相片数据1.pht

     文件       1606  2008-12-16 22:22  摄影测量程序data绝对定向解算.txt

     文件       2838  2008-11-03 19:47  摄影测量程序DataManager.cpp

     文件       1314  2008-11-03 15:20  摄影测量程序DataManager.h

     文件      34098  2008-12-16 11:08  摄影测量程序DebugActiveFun.obj

     文件     138133  2008-12-16 11:08  摄影测量程序DebugCalculater.obj

     文件      12115  2008-10-28 00:15  摄影测量程序DebugChildView.obj

     文件      19054  2008-12-12 13:24  摄影测量程序DebugContainer.obj

     文件      18173  2008-11-18 20:19  摄影测量程序DebugDataManager.obj

     文件    1405004  2008-12-16 11:08  摄影测量程序DebugDPS.exe

............此处省略105个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)