• 大小: 3.9MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-12
  • 语言: 其他
  • 标签: 摄影测量  

资源简介

摄影测量常用程序,包括空间后方交会,前方交会,以及区域网平差程序等,界面不错

资源截图

代码片段和文件信息

#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()
{

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2009-04-13 09:17  摄影测量程序\
     目录           0  2009-04-13 09:17  摄影测量程序\摄影测量程序\
     文件         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
     文件        2838  2008-11-03 19:47  摄影测量程序\摄影测量程序\DataManager.cpp
     文件        1314  2008-11-03 15:20  摄影测量程序\摄影测量程序\DataManager.h
     文件        4378  2008-10-22 20:39  摄影测量程序\摄影测量程序\dianshu.bmp
     文件      252056  2008-09-25 03:11  摄影测量程序\摄影测量程序\DPS.ilk
     文件        3582  2008-10-19 12:53  摄影测量程序\摄影测量程序\Ex.bmp
     文件        3582  2008-10-19 12:53  摄影测量程序\摄影测量程序\Ey.bmp
     文件        9294  2008-10-19 12:53  摄影测量程序\摄影测量程序\Ez.bmp
     文件        3736  2008-12-14 13:59  摄影测量程序\摄影测量程序\File.cpp
     文件         504  2008-11-04 12:32  摄影测量程序\摄影测量程序\File.h
     文件        4822  2002-10-28 10:59  摄影测量程序\摄影测量程序\FileReader.cpp
     文件        1503  2008-11-03 15:20  摄影测量程序\摄影测量程序\FileReader.h
     文件       61994  2008-12-16 11:03  摄影测量程序\摄影测量程序\frame.cpp
     文件        1265  2008-12-12 13:01  摄影测量程序\摄影测量程序\frame.h
     文件         117  2008-12-01 21:50  摄影测量程序\摄影测量程序\Global.h
     文件       31026  2008-10-10 17:21  摄影测量程序\摄影测量程序\ICO.ico
     文件      161862  2002-10-21 03:35  摄影测量程序\摄影测量程序\ICO1.ico
............此处省略102个文件信息

评论

共有 条评论