-
关于用c++实现对图片的放大,缩小以及循环播放的设置
关于用c++实现对图片的放大,缩小以及循环播放的设置-Study on the Use of c++ Achieve image to enlarge, narrow and Loop settings
- 2022-06-15 19:54:38下载
- 积分:1
-
一个用汇编语言编写的计算器程序
一个用汇编语言编写的计算器程序-an assembler language calculator program
- 2023-07-02 21:05:03下载
- 积分:1
-
Bezier曲线的java
bezier曲线的JAVA实现-bezier curves JAVA
- 2023-03-10 13:10:04下载
- 积分:1
-
实现password的校验,输两次密码不一致提示sorry,一致提示hello...
实现password的校验,输两次密码不一致提示sorry,一致提示hello-check password
- 2022-11-12 15:45:03下载
- 积分:1
-
计时程序,对8253进行分频,使用二个计数器,使第二个计数器的OUT作为中断源,送到8259产生中断,在LED上显示时间...
计时程序,对8253进行分频,使用二个计数器,使第二个计数器的OUT作为中断源,送到8259产生中断,在LED上显示时间-time procedures for the 8,253-frequency, the use of two counters, so that a second counter OUT interrupted as a source to have interrupted 8259, the time shown on the LED
- 2022-05-24 19:23:29下载
- 积分:1
-
编译检测程序,用汇编编写的代码检测系统…
汇编检测 mac,用汇编写的检测系统mac代码-compilation detection mac, with the compilation of writing code detection system mac
- 2022-04-20 07:55:05下载
- 积分:1
-
EM78P153设计的PWM源代码,里面有详细的描述。
EM78P153用PWM设计的源代码,其中有详细的说明。
- 2022-08-03 05:00:27下载
- 积分:1
-
personal collection of some boot
个人收集的一些引导程序-personal collection of some boot
- 2023-04-01 03:00:04下载
- 积分:1
-
这是我个人的写作,p80_7款PC
这是我个人写的,P807段在PC上
- 2022-02-16 00:23:32下载
- 积分:1
-
vb 分形树
Dim xs As Integer
Dim ys As Integer
Dim alph As Single
Dim lng As Single
Dim m As Integer
Const PI As Single = 3.14159265
Private Function tree(x As Integer, y As Integer, angle As Single, length As Single, n As Integer)
Dim x0 As Integer
Dim y0 As Integer
Dim alpha As Single
Dim beita As Single
Dim leng As Single
BackColor = vbWhite
If n > 0 Then
x0 = x + Cos(angle) * length
y0 = y - Sin(angle) * length
picture1.Line (x, y)-(x0, y0), vbbrake
alpha = angle - PI / 8
beita = angle + PI / 8
leng = 2 * length / 3
Call tree(x0, y0, alpha, leng, n - 1)
&nbs
- 2022-01-24 19:06:52下载
- 积分:1