• 大小: 46KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-17
  • 语言: C/C++
  • 标签: tay  tracing  

资源简介

射线追踪程序,自己编写的vc++程序,可以直接运行

资源截图

代码片段和文件信息

// MainFrm.cpp : implementation of the CMainframe class
//

#include “stdafx.h“
#include “MyRay.h“

#include “MainFrm.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMainframe

IMPLEMENT_DYNCREATE(CMainframe CframeWnd)

BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

static UINT indicators[] =
{
ID_SEPARATOR           // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};

/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction

CMainframe::CMainframe()
{
// TODO: add member initialization code here

}

CMainframe::~CMainframe()
{
}

int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;

if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1;      // fail to create
}

if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
  sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1;      // fail to create
}

// TODO: Delete these three lines if you don‘t want the toolbar to
//  be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);

return 0;
}

BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs

return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics

#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}

void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers


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

     文件       2506  2006-12-23 19:36  MyRay\MainFrm.cpp

     文件       1581  2006-12-23 19:36  MyRay\MainFrm.h

     文件       1904  2007-09-12 07:45  MyRay\MyRay.clw

     文件       4191  2006-12-23 19:36  MyRay\MyRay.cpp

     文件       4602  2006-12-23 19:39  MyRay\MyRay.dsp

     文件        533  2006-12-23 19:37  MyRay\MyRay.dsw

     文件       1345  2006-12-23 19:36  MyRay\MyRay.h

     文件     107520  2007-09-12 07:45  MyRay\MyRay.ncb

     文件        889  2007-09-12 07:45  MyRay\MyRay.plg

     文件       1722  2006-12-23 19:36  MyRay\MyRayDoc.cpp

     文件       1464  2006-12-23 19:36  MyRay\MyRayDoc.h

     文件       7319  2006-12-24 10:12  MyRay\MyRayView.cpp

     文件       2202  2006-12-24 09:30  MyRay\MyRayView.h

     文件       2400  2006-12-24 09:36  MyRay\out.txt

     文件       4287  2006-12-23 19:36  MyRay\ReadMe.txt

     文件       1078  2006-12-23 19:36  MyRay\res\MyRay.ico

     文件        397  2006-12-23 19:36  MyRay\res\MyRay.rc2

     文件       1078  2006-12-23 19:36  MyRay\res\MyRayDoc.ico

     文件       2238  2006-12-23 19:39  MyRay\res\Pyramid.ico

    ..A.SH.      7680  2006-12-23 22:51  MyRay\res\Thumbs.db

     文件        598  2006-12-23 20:02  MyRay\res\Toolbar.bmp

     文件        733  2006-12-23 20:04  MyRay\Resource.h

     文件        207  2006-12-23 19:36  MyRay\StdAfx.cpp

     文件       1054  2006-12-23 19:36  MyRay\StdAfx.h

     文件      44432  2007-09-12 07:45  MyRay\MyRay.aps

     文件      10856  2007-09-12 07:45  MyRay\MyRay.rc

     文件      48640  2007-09-12 07:45  MyRay\MyRay.opt

     目录          0  2006-12-24 10:13  MyRay\res

     目录          0  2007-09-12 07:41  MyRay

----------- ---------  ---------- -----  ----

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

评论

共有 条评论

相关资源