• 大小: 1.88MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-14
  • 语言: C/C++
  • 标签: stl  

资源简介

任意读入一个ASCII码的STL文件,显示出该形体。可以变换角度观察。对应目录下提供了三个STL文件实例。压缩包内包含一个stl文件

资源截图

代码片段和文件信息

// ckd12.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “ckd12.h“

#include “MainFrm.h“
#include “ckd12Doc.h“
#include “ckd12View.h“

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

/////////////////////////////////////////////////////////////////////////////
// CCkd12App

BEGIN_MESSAGE_MAP(CCkd12App CWinApp)
//{{AFX_MSG_MAP(CCkd12App)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCkd12App construction

CCkd12App::CCkd12App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CCkd12App object

CCkd12App theApp;

/////////////////////////////////////////////////////////////////////////////
// CCkd12App initialization

BOOL CCkd12App::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CCkd12Doc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CCkd12View));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();

return TRUE;
}


/////////

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

     文件      28812  2017-05-22 15:34  ckd12\ckd12.aps

     文件       2211  2017-05-22 16:18  ckd12\ckd12.clw

     文件       4191  2017-05-22 14:16  ckd12\ckd12.cpp

     文件       4534  2017-05-22 14:16  ckd12\ckd12.dsp

     文件        535  2017-05-22 14:16  ckd12\ckd12.dsw

     文件       1345  2017-05-22 14:16  ckd12\ckd12.h

     文件      91136  2017-09-26 16:09  ckd12\ckd12.ncb

     文件       1257  2017-06-19 10:15  ckd12\ckd12.plg

     文件      10536  2017-05-22 14:16  ckd12\ckd12.rc

     文件       2399  2017-05-22 14:40  ckd12\ckd12Doc.cpp

     文件       1585  2017-05-22 14:37  ckd12\ckd12Doc.h

     文件       3195  2017-05-22 16:27  ckd12\ckd12View.cpp

     文件       1830  2017-05-22 16:02  ckd12\ckd12View.h

     文件       2506  2017-05-22 14:16  ckd12\MainFrm.cpp

     文件       1581  2017-05-22 14:16  ckd12\MainFrm.h

     文件       4287  2017-05-22 14:16  ckd12\ReadMe.txt

     文件        492  2017-05-22 14:16  ckd12\Resource.h

     文件        207  2017-05-22 14:16  ckd12\StdAfx.cpp

     文件       1054  2017-05-22 14:16  ckd12\StdAfx.h

     文件       1078  2017-05-22 14:16  ckd12\res\ckd12.ico

     文件        397  2017-05-22 14:16  ckd12\res\ckd12.rc2

     文件       1078  2017-05-22 14:16  ckd12\res\ckd12Doc.ico

     文件       1078  2017-05-22 14:16  ckd12\res\Toolbar.bmp

     文件     122948  2017-06-19 10:15  ckd12\Debug\ckd12.exe

     文件     322212  2017-06-19 10:15  ckd12\Debug\ckd12.ilk

     文件      27300  2017-05-22 16:02  ckd12\Debug\ckd12.obj

     文件    5499648  2017-05-22 14:36  ckd12\Debug\ckd12.pch

     文件     484352  2017-06-19 10:15  ckd12\Debug\ckd12.pdb

     文件       7244  2017-05-22 14:36  ckd12\Debug\ckd12.res

     文件      41302  2017-05-22 14:40  ckd12\Debug\ckd12Doc.obj

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

评论

共有 条评论