-
曲线和曲面算法
说明: 代码包含以下算法:三叶梅花线,圆柱螺线,圆锥螺线,三次贝塞尔曲线,三次B样条曲线。
环形面,锥面,双线性曲面,旋转曲面,贝塞尔曲面,B样条曲面。(The code contains the following algorithms: three-leaf plum blossom line, cylindrical spiral, conical spiral, cubic Bezier curve, cubic B-spline curve.
Torus, cone, bilinear surface, rotation surface, Bezier surface, B-spline surface.)
- 2020-04-05 19:20:11下载
- 积分:1
-
vc++001
VC++ 源代码 文档 共10节 第一节(VC source code files a total of 10 Section I)
- 2007-02-11 23:11:52下载
- 积分:1
-
TinyVpnDotNet 国外vpn 换ip 示例源码 DotRas实现
DotRas实现的
- 2014-03-18下载
- 积分:1
-
大数加法
由于直接加法有数字大小限制,这里使用字符串进行1000位以内的数字加法。(Because direct addition has a numerical size constraint, the string is used to add numbers within 1000 bits.)
- 2022-01-26 15:45:12下载
- 积分:1
-
Source
俄罗斯方块源码
直接运行可以看到结果。好东西大家分享嘛 (Tetris source code can be run directly see the result. Good things to share with you why)
- 2009-01-01 10:22:22下载
- 积分:1
-
OBJFileLoader
用openGL实现obj文件的加载并优化显示,适用于各种二进制的格式的obj文件(Obj file with the openGL implementation and optimize the loading of display suitable for a variety of binary formats obj file)
- 2009-12-09 17:06:40下载
- 积分:1
-
TSPMatlab
TSP问题(货郎担问题,旅行商问题)的模拟退火算法通用malab源程序
f目标最优值,T最优路线,d距离矩阵,t0初始温度,tf结束温度
- 2010-08-20 21:32:42下载
- 积分:1
-
Hufferman
使用哈弗曼编码技术进行数据压缩和解压缩,缺点在于只能用于文本(Havermann coding techniques using data compression and decompression, disadvantage is that the text can only be used)
- 2010-01-03 19:23:10下载
- 积分:1
-
VolumeRender
说明: 体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制体绘制volume render(volume render)
- 2011-03-30 09:18:57下载
- 积分:1
-
1602显示驱动程序
LCD1602的数据写入及CGRAM的使用
编程 2010-06-19 17:41:11 阅读84 评论0 字号:大中小 订阅
1.当使能端E由1变为0时,执行写指令,数据被写入。
例如,欲写入数据i到DDRAM:
void WDR(uchar i)
{
CheckBusy();//检忙
LCD_RS=1;
LCD_RW=0;
LCD_EN=0;
Delay();
LCD_DATA=i;//数据输出到定义端口
Delay();
LCD_EN=1;
Delay();
LCD_EN=0;//这一步才开始写入到LCD
Delay();
}
2.CGRAM
1602能存储8个自定义字符,这8个自定义字符存储空间的首地址分别是:0X40,0X48,0X50,0X58,0X60,0X68,0X70,0X78。
以0x40来说,它的存储空间如图所示:(riting of LCD1602 and the Use of CGRAM)
- 2020-06-23 13:20:02下载
- 积分:1