-
2
说明: Visual C++角色扮演游戏程序设计之CG合成
游戏编程的第2步,CG合成的源代码(Visual C++ role-playing games designed CG synthesis Game Programming Step 2, CG source code for the synthesis of)
- 2010-01-22 14:31:42下载
- 积分:1
-
gBoolean
本实验主要利用OpenGL完成两个物体的加(或)、减(和)运算。利用二次曲面完成球、圆盘和圆锥的绘制。通过模板测试和深度测试来完成两个物体的加(或)、减(和)运算。设置菜单,并把右键和菜单相关联,来选择所要进行的操作。
(This experiment mainly use OpenGL to complete two objects and (or), minus (and) operation.By using quadric surface finish ball, cone and the drawing of the disc.Through templates and depth testing to complete two objects and (or), minus (and) operation.Settings menu, and the right associated with the menu, to choose to do.)
- 2015-11-11 23:28:54下载
- 积分:1
-
经典算法大全
基础算法学习,非常适合初学者,很好用。希望能够帮助到大家!(Basic algorithm learning)
- 2020-06-18 20:20:02下载
- 积分:1
-
radchart is a completely customizable chart control, can display complex graphic...
radchart是一个完全可定制的图表控件,可以显示复杂的图形数据,本产品提供了四种基本类型的图表-饼图(Pie)、条形图(Bar)、折线图(line)和范围图(Area),每一种都可以完全定制,radchart可以帮助您更人性化、更有利于了解复杂数据的表现
- 2022-01-25 16:30:22下载
- 积分:1
-
CPU自制入门 PDF电子书下载 带书签目录 完整版_
自制CPU,对这方面感兴趣的朋友可以看一看,实际能不能成功就看你自己了!(Homemade CPU, interested in this area of friends can take a look at the actual success can see you!)
- 2017-07-19 16:05:39下载
- 积分:1
-
C# 制作系统服务 实例源码下载
附件中有详细的安装使用文档,大概步骤如下:1.新建Windows项目,选择"Windows服务"类型的工程。2.生成的Program.cs文件中,定义了服务启动的Main函数。 代码 namespace WindowsService1{ static class Program { /// /// 应用程序的主入口点。 /// static void Main() { ServiceBase[] ServicesToRun; ServicesToRun = new ServiceBase[] { new Service1() }; ServiceBase.Run(ServicesToRun); } }} 3.在新建的工程中,点击Service1.cs文件,切换到代码视图,生成的代码继承于ServiceBase基类,并重载了OnStart和OnStop方法。我在这个文件中进行了一些简单的操作,就是在服务开始的时候,定义一个定时器,然后每隔1秒钟,向文件中写入当前时间。 代码 namespace WindowsService1{ public partial class Service1 : ServiceBase { Timer timer; public Service1() { InitializeComponent(); } protected override void OnStart(string[] args) { timer = new Timer(1000); timer.Elapsed = new ElapsedEventHandler(timer_Elapsed); timer.Start(); } protected override void OnStop() { timer.Stop(); timer.Dispose(); } void timer_Elapsed(object sender, ElapsedEventArgs e) { string filePath = AppDomain.CurrentDomain.BaseDirectory "test.txt"; StreamWriter sw = null; if (!File.Exists(filePath)) { sw = File.CreateText(filePath); } else { sw = File.AppendText(filePath); } sw.Write("访问时间:" DateTime.Now.ToString() Environment.NewLine); sw.Close(); } }}4.向工程中添加一个安装程序类。 4.在新添加的安装程序类中,设定服务的名称,启动方式,账号名和密码等信息。 代码 namespace WindowsService1{ partial class Installer1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; private System.ServiceProcess.ServiceProcessInstaller spInstaller; private System.ServiceProcess.ServiceInstaller sInstaller; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { components = new System.ComponentModel.Container(); // 创建ServiceProcessInstaller对象和ServiceInstaller对象 this.spInstaller =new System.ServiceProcess.ServiceProcessInstaller(); this.sInstaller = new System.ServiceProcess.ServiceInstaller(); // 设定ServiceProcessInstaller对象的帐号、用户名和密码等信息 this.spInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem; this.spInstaller.Password = null; this.spInstaller.Username = null; // 设定服务的名称 this.sInstaller.ServiceName = "WindowsService1"; //设定服务启动的方式 this.sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic; this.Installers.AddRange(new System.Configuration.Install.Installer[] { this.spInstaller,this.sInstaller}); } #endregion }}5.生成工程,在bin目录下会生成exe文件。如果直接运行exe文件的话,是不能执行的,需要使用安装Windows服务用到一个名为InstallUtil.exe的命令行工具,打开命令行工具,转到InstallUtil.exe的目录下,我安装的是VS 2010,对应的目录为:C:WindowsMicrosoft.NETFrameworkv4.0.30319InstallUtil.exe,然后执行InstallUtil.exe 待执行的exe文件的目录,如:InstallUtil.exe F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe。执行成功后,会在Windows的服务中,出现了刚刚添加的服务的名称。 6.启动该服务,这时打开binDebug文件夹,发现已经生成了一个test.txt的文件,里面记录了时间。这说明服务已经正式开始执行。7.停止服务的操作也和简单,打开命令行工具,转到C:WindowsMicrosoft.NETFrameworkv4.0.30319目录,然后执行InstallUtil.exe - u F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe命令就可以了。
- 2015-04-21下载
- 积分:1
-
动态规划
使用动态规划进行练习,更加节省开销的结题。
- 2022-04-26 12:02:32下载
- 积分:1
-
1111222223333334444445533332345554
VC计算机图形学原理及算法教程
VC计算机图形学入门教程(VC theory and algorithms of computer graphics computer graphics tutorial Tutorial VC)
- 2013-11-18 15:30:26下载
- 积分:1
-
gscale
matlab的gscale函数功能是将强度图像等映射到别的值范围。(Function of matlab gscale intensity images is mapped to another range.)
- 2013-05-22 18:00:54下载
- 积分:1
-
perfect source code in VC#,including all function requirement of typical library...
vc#环境下的极品源代码,包含了典型图书馆管理系统的全部功能要求,强烈推荐。-perfect source code in VC#,including all function requirement of typical library manage system.
- 2022-07-10 05:09:49下载
- 积分:1