-
这很容易
This easy-to-follow book provides a comprehensive and practical introduction to the basic AI techniques used by game developers, leading you through the process of designing, programming, and implementing intelligent agents for action games using C++.
- 2022-05-26 07:01:15下载
- 积分:1
-
window 异步多线程 socket
vc++实现windows 异步多线程socket,服务器,客户端代码都有,都是采用异步多线程的方式,结构清析明了,用vc 6.0或vs2008打开dsp就能运行
- 2022-03-25 08:54:47下载
- 积分:1
-
这是一个简单的用C语言编译的汉诺塔程序,该程序是在VC环境下编译出来的。...
这是一个简单的用C语言编译的汉诺塔程序,该程序是在VC环境下编译出来的。-This is a simple C language compiler to use the Tower of Hanoi program was compiled under VC out.
- 2022-07-23 00:45:34下载
- 积分:1
-
I am in the process of learning vc prepared the application on the realization o...
我在学习vc的过程中编写的关于实现应用程序自定义快捷键的操作的程序
-I am in the process of learning vc prepared the application on the realization of custom shortcuts operating procedures
- 2022-05-08 18:43:05下载
- 积分:1
-
在图像中寻找有趣的功能
an attempt to find interesting features in an image
- 2022-01-26 04:59:19下载
- 积分:1
-
ATL_DLL互发消息
【目的】:创建两 DLL,使两 DLL 能互发消息 【工具】:VS2005 【步骤简介】: 1、创建 MFC APPLICATI
- 2023-08-15 10:40:03下载
- 积分:1
-
鲨鱼分类器
鲨鱼的分类器,机器学习。C + +
in 机器学习, 基于支持向量机(支持向量机,也支持向量网络) 是监督学习与相关联的学习模型
- 2022-01-25 19:26:51下载
- 积分:1
-
密码学中 维吉尼亚算法的 c语言实现
调试无误
密码学中 维吉尼亚算法的 c语言实现
调试无误-Virginia cryptography algorithm implementation c language
- 2022-06-01 06:22:03下载
- 积分:1
-
After geting system infomation and running System.exe,you can finish different f...
获取系统信息 运行System.exe后,在弹出的窗体中,单击不同按钮完成不同功能。-After geting system infomation and running System.exe,you can finish different functions by click different buttons in pop-up form.
- 2022-03-24 10:18:52下载
- 积分:1
-
VC毛玻璃
#define GDIPVER 0x0110 //定义高版本的GDI+(1.1)
#include
#include
#include
#include
#include
#pragma comment(lib,"GdiPlus.lib")
using namespace Gdiplus;
#include
#pragma comment(lib,"dwmapi.lib")
//Aero效果是否已启用
BOOL IsCompositionEnabled()
{
BOOL bEnabled,bResult;
bResult = (SUCCEEDED(DwmIsCompositionEnabled(&bEnabled)) && bEnabled);
return bResult;
}
//对已分层的窗口启动玻璃效果
HRESULT EnableBlurBehindWindow(HWND hWnd, //窗口句柄
BOOL bEnable = TRUE, //启用或禁用
HRGN hRgn = 0, //模糊窗体中某个区域
BOOL bTransitionOnMaximized = FALSE) //最大化时是否启用
{
DWM_BLURBEHIND blurBehind = { 0 };
blurBehind.dwFlags = DWM_BB_ENABLE | DWM_BB_TRANSITIONONMAXIMIZED;
blurBehind.fEnable = bEnable;
blurBehind.fTransitionOnMaximized = bTransitionOnMaximized;
if (bEnable && hRgn != NULL)
{
blurBehind.dwFlags |= DWM_BB_BLURREGION;
blurBehind.h
- 2023-05-01 15:10:04下载
- 积分:1