自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (28)
  • 收藏
  • 关注

转载 《基于MFC的OpenGL编程》Part 6 Animation

《基于MFC的OpenGL编程》Part 6 Animation       本文中将对第4—5篇文章中的太阳系模型进行修改,加入一些动画效果。此外还会加入显示帧速率的代码。      加入动画效果最容易的方法是响应WM_TIMER消息,在其消息处理函数中改变一些参数值,比如每过多少毫秒就旋转一定的角度,并且重绘场景。Frame RateFrame rate is

2016-02-29 09:07:57 913

转载 《基于MFC的OpenGL编程》Part 5 Keyboard and Mouse Control

《基于MFC的OpenGL编程》Part 6 Keyboard and Mouse Control原文链接在上一篇的基础上加入对 键盘和鼠标 的事件处理程序,以便用其来 控制3D物体的旋转和移动 。1、首先在CMy2OpenGLView类中为WM_KEYDOWN,  WM_LBUTTONDOWN, WM_LBUTTONUP 和 WM_MOUSEMOVE四个事件加入事件处

2016-02-28 10:15:09 1105

转载 《基于MFC的OpenGL编程》Part 4 Transformations - Rotations, Translations and Scaling

《基于MFC的OpenGL编程》Part 4 Transformations - Rotations, Translations and Scaling原文链接Transformations - Translation, Rotation and ScalingTranslation is nothing but moving along an arbitrary axis.

2016-02-28 09:33:06 671

转载 《基于MFC的OpenGL编程》Part3 Drawing Simple 3D objects

《基于MFC的OpenGL编程》Part 3 Drawing Simple 3D objects视见体Viewing Volume is nothing but the region of 3D Cartesian space in that will occupy the window.It is nothing but the minimum and maximum x, y

2016-02-27 09:47:08 1352

转载 《基于MFC的OpenGL编程》Part 2 Drawing Simple 2D Shapes

《基于MFC的OpenGL编程》Part 2 Drawing Simple 2D Shapes原文链接剪裁区域     In OpenGL when you create a window to draw in we must specify the coordinate system we want to use and how to map the specif

2016-02-26 09:31:20 900

转载 《基于MFC的OpenGL编程》Part 1 A Primer

《基于MFC的OpenGL编程》Part 1 A Primer3D图形学基本概念PerspectivePerspective refers to the angles between the lines that lend the illusion of three dimensions.Colors and ShadingMoving beyond line drawin

2016-02-25 16:13:45 664

vc_CompilerCTP.Nov2013.exe

支持c++11中的constexpr 、noexcept等语法特性。 This compiler CTP contains preview versions of various C++11, C++14, and C++/CX language features.

2019-07-01

OSG 3dparty VS2015(x86)

OSG 3dparty VS2015(x86)编译好的三方库,针对VS2015的,32位的三方库,可以下载直接使用,不过GDAL库没有,需要自己编译。

2019-01-11

OSG 3dparty VS2015(x64)64位三方库

OSG 3dparty VS2015(x64)编译好的三方库,针对VS2015的,64位的三方库,可以下载直接使用,不过GDAL库没有,需要自己编译。

2019-01-11

windows下查看GPU使用率的小程序

用于查看GPU使用情况的小工具,查看CPU占用率,温度,风扇转速等。

2018-09-29

SVM格式转换工具

svm前的数据转化,操作步骤: 1.先运行FormatDataLibsvm.xls 2.然后将数据粘贴到sheet1的topleft单元 3.点击"工具"-->"宏"-->执行下面有一个选项(FormatDatatoLibsvm),选中然后运行即可。 如果你禁用了宏,请在“excel选项”中先启动宏

2017-11-16

DLL_WIN32.rar

压缩包包含三个文件夹,是Win32程序的DLL调用。 原文链接:http://blog.csdn.net/sinat_24206709/article/details/50836503

2016-03-25

MFC调用DLL.rar

原文链接:http://blog.csdn.net/sinat_24206709/article/details/50847937

2016-03-25

1_15OpenGL.rar

文章链接:http://blog.csdn.net/sinat_24206709/article/details/50824273

2016-03-25

1_14OpenGL(beta).rar

原文链接:http://blog.csdn.net/sinat_24206709/article/details/50816806 引文链接:http://www.cnblogs.com/phinecos/archive/2008/11/07/1328861.html

2016-03-08

1_12OpenGL.rar

对原文略作修改,详细可以搜博客sinat_24206709的博客:《基于MFC的OpenGL编程》Part 12 Creating 2D and 3D Text。 原文链接:http://www.cnblogs.com/phinecos/archive/2008/11/06/1328250.html

2016-03-04

1_11OpenGL.rar

对原文略作修改 原文链接:http://www.cnblogs.com/phinecos/archive/2008/11/06/1328204.html

2016-03-04

1-10OpenGL.rar

略作了一些修改。 原文链接:http://www.cnblogs.com/phinecos/archive/2008/11/06/1327948.html

2016-03-03

1-9OpenGL.rar

《基于MFC的OpenGL编程》Part 9 Texture Mapping源码 基于博客:http://www.cnblogs.com/phinecos/archive/2008/11/05/1327646.html作出了相应的修改和调整

2016-03-02

1_8OpenGL 《基于MFC的OpenGL编程》Part 7 Colors

《基于MFC的OpenGL编程》Part 7 Colors的源码

2016-03-02

1_7OpenGL.rar Part7 Sourcecode

OpenGL在MFC下的编程,Part7 Sourcecode, 链接博客:http://write.blog.csdn.net/postedit/50770239

2016-03-01

基于MFC的OpenGL编程part7源码

基于MFC的OpenGL编程part7的源码 出处:http://phinecos.cnblogs.com/  代码被我修改过,可以调试出来。原文中的一些细节地方重新注释了一下,方便理解。 很多地方被我修改过,但是大致的内容不会发生变化。 我自己根据博主的文章经行了修改注释:http://write.blog.csdn.net/postedit/50763126

2016-02-29

VC6LineNumberAddin(未破解但是能用,使用说明中介绍不能注册时的解决办法)

VC6LineNumberAddin(未破解但是能用,使用说明中介绍不能注册时的解决办法)

2016-02-25

LabVIEW编程样式-高清版

Labview编程样式高清版,比扫描版更清晰,介绍了编程的思路构架,适合与中高级学者,进一步深入了解Labview编程思想

2015-08-12

HFS (http file server)

HFS (http file server)经典http file server,内外网数据传输利器,内网传输速度超快,无需安装客户端

2024-06-19

libCity-speed-predict-data,LibCity的部分数据,用于预测速度(Traffic Speed )

LibCity的部分数据,用于预测速度(Traffic Speed ),部分数据包括:PEMSD8.zip、instagram.zip、LOS_LOOP.zip、LOS_LOOP_SMALL.zip、METR_LA.zip

2023-11-06

swig4.1.1linux版+windows版

swig4.1.1linux版swig-4.1.1.tar.gz源码 +windows版

2023-10-23

Data Explorer Version 22 (1.46 GB)原始数据集带源码

Data Explorer Version 22 (1.46 GB)原始数据集带源码

2022-12-06

Facebook Comment Volume (regression) ,用于lightGBM回归模型测试

Facebook Comment Volume (regression) ,用于lightGBM回归模型测试

2022-12-04

NYC taxi ride duration lightGBM回归数据集

NYC taxi ride duration, lightGBM回归数据集,用于回归预测,测试机器学习模型

2022-12-04

2019番茄助手,用于社区版

2019番茄助手,用于社区版

2022-11-25

xgboost 的2016/9/30 23:49:03版本,vs2013和vs2015能编译过,支持c++11

用于测试学习xgboost,centos7的g++4.8.5版本也能编译通过

2022-04-20

CSTN数据,用于训练学习模型

CSTN时空网络模型数据源

2022-03-16

protoBuf3.4.0源码

1.用于跨平台编译pb协议

2022-03-06

redis相关资料,代码、学习文档、笔记

redis相关资料,代码、学习文档、笔记等

2021-11-19

VisualAssistX10.9.2302.0for2019.zip.7z

VAX for 2019 and Everything

2021-09-14

v6s27875406.1603248721.exe.7z

vs2019

2021-08-08

MobaXterm.Portable.v20.3.zip

替代xshell、xftp,轻量级程序。同时支持WSL,默认可以连接到自己的linux系统,无需设置其它的ssh操作,特别是针对centos系统。

2021-08-08

VisualGDB5.5.7z

VisualGDB5.5,vs2019可用,跨平台编程调试

2021-06-28

CentOS8.zip

CentOS 8.1 1911 wsldl 20040300 -Added "Windows Terminal" and "Fluent Terminal" integration Supports Windows 10 19041(2004) or Later WSL1/WSL2

2021-04-19

CentOS7.6_1907.7z

centos7.6用于win10内置的linux操作系统,win101903以上版本可用 wsldl 20040300 -Added "Windows Terminal" and "Fluent Terminal" integration

2021-04-19

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除