-
CListCtrl.CHeaderCtrl-
说明: 改变 CListCtrl、CHeaderCtrl 高度、字体、颜色和背景。合适给刚刚接触VC的人学习(Change CListCtrl, CHeaderCtrl height, fonts, colors and backgrounds. The right to learn from people new to VC)
- 2021-02-25 15:19:38下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
ZLLK
一个简单的连连看游戏提供给大家,希望能给新手一些帮助(A simple Snake game available to everyone, I hope to give some help novice)
- 2013-12-18 21:05:29下载
- 积分:1
-
Makefile_learn
学习makefile的新手必看的好东西。(Novice will see good things.Makefile
)
- 2012-12-10 16:35:11下载
- 积分:1
-
Biometric-Testing
Biometric Fingerprint, testing application
- 2013-12-11 22:08:35下载
- 积分:1
-
yuan
说明: A* 算法矢量地图路径寻优的程序实现 VC实现最优路径(A* algorithm for vector map the path optimization process to achieve)
- 2010-04-11 15:44:47下载
- 积分:1
-
breadthsearch
a source code that impliment bradth first search
- 2009-12-13 01:10:35下载
- 积分:1
-
sjwl
一个人工智能的神经网络问题,VC环境下编译,很适合对人工智能感兴趣的朋友学习(An artificial intelligence neural network problem, the VC environment compiler, it is suitable to study artificial intelligence interested friends)
- 2013-04-22 16:34:24下载
- 积分:1
-
specref
模拟太阳光照射物体形成光照效果,并且物体可以移动,模拟太阳光可以旋转以模拟出不同角度的光照效果(Simulated sunlight to form an object lighting effects, and objects can be moved to simulate sunlight can be rotated to simulate the effect of different angles of light)
- 2011-07-06 19:49:37下载
- 积分:1
-
YQJK
舆情监控系统,设定关键字,利用搜索引擎自动搜索。(Public opinion monitoring system, set the keywords, the use of search engines automatically search.)
- 2021-04-01 21:19:08下载
- 积分:1