• 大小: 3.14MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-13
  • 语言: 其他
  • 标签:

资源简介

摄影测量学基础(所有编程汇集大全)间后房交会 前方交会 相对定向 绝对定向 光束法 航带法等等全部编程

资源截图

代码片段和文件信息

#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  摄影测量程序\bmp00001.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  摄影测量程序\data\Left.txt

     文件       6381  2008-12-16 22:21  摄影测量程序\data\Right.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  摄影测量程序\Debug\ActiveFun.obj

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

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

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

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

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

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

评论

共有 条评论

相关资源