摘要: 现在是我在学习Markdown时做的笔记。学完这些Markdown的基本使用已经不成问题。1. 标题设置(让字体变大,和word的标题意思一样)在Markdown当中设置标题,有两种方式:第一种:通过在文字下方添加“=”和“-”,他们分别表示一级标题和二级标题。第二种:在文字开头加上 “#”,通过“... 阅读全文
posted @ 2014-12-19 16:32 蓝夜 阅读(166) 评论(0) 推荐(0)
摘要: void Rgb2Hsv(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] /... 阅读全文
posted @ 2014-12-19 10:38 蓝夜 阅读(1805) 评论(0) 推荐(0)