情人节红攻瑰--Delphi版本
在oschina上看到了用c写的红玫瑰, 以前只见过用js写的, 就随手用delphi翻译了c的代码, 效果还不错哈....
原c作者jokeym贴子 http://www.oschina.net/code/snippet_2373787_48760
我的改版贴子 http://www.oschina.net/code/snippet_212659_48907
以下为代码:
- unit Unit1;
- interface
- uses
- Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
- Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls;
- type
- TForm1 = class(TForm)
- btn1: TButton;
- procedure btn1Click(Sender: TObject);
- private
- public
- { Public declarations }
- end;
- var
- Form1: TForm1;
- implementation
- {$R *.dfm}
- uses
- System.Math;
- // 原作者贴子,
- // http://www.oschina.net/code/snippet_2373787_48760
- // delphi版本
- // ying32
- const
- RAND_MAX = $7FFF;
- urosesize: Integer = 500;
- uh: Integer = -250;
- type
- // 定义结构体
- TDOT = record
- x: Double;
- y: Double;
- z: Double;
- r: Double; // 红色
- g: double; // 绿色
- // b(蓝色) 通过 r 计算
- end;
- function calc(a, b, c: Double; var d: TDOT): Boolean;
- var
- j, n, o, w, z: Double;
- _A, _B: Double;
- begin
- Result := False;
- if c > 60 then // 花柄
- begin
- d.x := sin(a * 7) * (13 + 5 / (0.2 + power(b * 4, 4))) - sin(b) * 50;
- d.y := b * urosesize + 50;
- d.z := 625 + cos(a * 7) * (13 + 5 / (0.2 + power(b * 4, 4))) + b * 400;
- d.r := a * 1 - b / 2;
- d.g := a;
- Exit(True);
- end;
- _A := a * 2 - 1;
- _B := b * 2 - 1;
- if _A * _A + _B * _B < 1 then
- begin
- if c > 37 then // 叶
- begin
- j := Trunc(c) and 1;
- n := IfThen(j <> 0, 6, 4);
- o := 0.5 / (a + 0.01) + cos(b * 125) * 3 - a * 300;
- w := b * uh;
- d.x := o * cos(n) + w * sin(n) + j * 610 - 390;
- d.y := o * sin(n) - w * cos(n) + 550 - j * 350;
- d.z := 1180 + cos(_B + _A) * 99 - j * 300;
- d.r := 0.4 - a * 0.1 + power(1 - _B * _B, -uh * 6) * 0.15 - a * b * 0.4 + cos(a + b) / 5 + power(cos((o * (a + 1) + IfThen(_B > 0, w, -w)) / 25), 30) * 0.1 * (1 - _B * _B);
- d.g := o / 1000 + 0.7 - o * w * 0.000003;
- Exit(True);
- end;
- if c > 32 then // 花萼
- begin
- c := c * 1.16 - 0.15;
- o := a * 45 - 20;
- w := b * b * uh;
- z := o * sin(c) + w * cos(c) + 620;
- d.x := o * cos(c) - w * sin(c);
- d.y := 28 + cos(_B * 0.5) * 99 - b * b * b * 60 - z / 2 - uh;
- d.z := z;
- d.r := (b * b * 0.3 + power((1 - (_A * _A)), 7) * 0.15 + 0.3) * b;
- d.g := b * 0.7;
- Exit(True);
- end;
- // 花
- o := _A * (2 - b) * (80 - c * 2);
- w := 99 - cos(_A) * 120 - cos(b) * (-uh - c * 4.9) + cos(power(1 - b, 7)) * 50 + c * 2;
- z := o * sin(c) + w * cos(c) + 700;
- d.x := o * cos(c) - w * sin(c);
- d.y := _B * 99 - cos(power(b, 7)) * 50 - c / 3 - z / 1.35 + 450;
- d.z := z;
- d.r := (1 - b / 1.2) * 0.9 + a * 0.1;
- d.g := power((1 - b), 20) / 4 + 0.05;
- Exit(True);
- end;
- end;
- procedure TForm1.btn1Click(Sender: TObject);
- var
- zBuffer: array of Smallint;
- i, j: Integer;
- x, y, z, zBufferIndex: Integer;
- dot: TDOT;
- r, g, b: Integer;
- begin
- SetLength(zBuffer, urosesize * urosesize);
- Canvas.Brush.Color := clWhite;
- Canvas.FillRect(Rect(0, 0, Width, Height));
- Randomize;
- for j := 0 to 1999 do
- begin
- for i := 0 to 9999 do
- begin
- if calc(Random(RAND_MAX) / RAND_MAX, Random(RAND_MAX) / RAND_MAX, (Random(RAND_MAX) mod 46) / 0.74, dot) then
- begin
- z := Trunc(dot.z + 0.5);
- x := Trunc(dot.x * urosesize / z - uh + 0.5);
- y := Trunc(dot.y * urosesize / z - uh + 0.5);
- if y >= urosesize then
- Continue;
- zBufferIndex := y * urosesize + x;
- if (not (zBuffer[zBufferIndex] <> 0)) or (zBuffer[zBufferIndex] > z) then
- begin
- zBuffer[zBufferIndex] := z;
- // 画点
- r := not Trunc(dot.r * uh);
- if r < 0 then
- r := 0;
- if r > 255 then
- r := 255;
- g := not Trunc(dot.g * uh);
- if g < 0 then
- g := 0;
- if g > 255 then
- g := 255;
- b := not Trunc(dot.r * dot.r * - 80);
- if b < 0 then
- b := 0;
- if b > 255 then
- b := 255;
- Canvas.Pixels[x + 50, y - 20] := RGB(r, g, b);
- end;
- end;
- Application.ProcessMessages;
- end;
- Sleep(1);
- end;
- end;
- end.
http://blog.csdn.net/zyjying520/article/details/46592831
情人节红攻瑰--Delphi版本的更多相关文章
- "如何用70行Java代码实现深度神经网络算法" 的delphi版本
http://blog.csdn.net/hustjoyboy/article/details/50721535 "如何用70行Java代码实现深度神经网络算法" 的delphi ...
- 我所改造的JSocket适用于任何DELPHI版本
JSOCKET是异步选择模式的通信控件,简单而强大,传奇的早期版本就是使用它作通信. { ******************************************************* ...
- delphi版本修改PE头源码
//VC++6外衣 1 OEPCODEFIVE: THEAD = ($55, $8B, $EC, $6A, $FF, $68, $00, $00, $00, $00, $68, $00, $00, $ ...
- Delphi 版本信息获取函数 GetFileVersionInfo、GetFileVersionInfoSize、VerFindFile、VerInstallFile和VerQueryValue
一.版本信息获取函数简介和作用 获取文件版本信息的作用: 1. 避免在新版本的组件上安装旧版本的相同组件: 2. 在多语言系统环境中,操作系统根据文件版本信息里提供的语言信息在启动程序时决定使用的正确 ...
- Delphi版本顺序
1.02.03.04.05.06.07.08.0200520062007 现在应该又出新的版本了
- 以前的 Delphi版本
Delphi 1 Delphi 2 Delphi 3 Delphi 4 Delphi 5 Delphi 6 Delphi 7 Delphi 8 Delphi 2005
- delphi版本对应
delphi 7 delphi 8delphi 2005 ----- 9delphi 2006 ----- 10 delphi 2007 ----- 11delphi 2009 ----- 12 de ...
- 很幽默的讲解六种Socket IO模型 Delphi版本(自己Select查看,WM_SOCKET消息通知,WSAEventSelect自动收取,Overlapped I/O 事件通知模型,Overlapped I/O 完成例程模型,IOCP模型机器人)
很幽默的讲解六种Socket IO模型(转)本文简单介绍了当前Windows支持的各种Socket I/O模型,如果你发现其中存在什么错误请务必赐教. 一:select模型 二:WSAAsyncSel ...
- Delphi Xe2 后的版本如何让Delphi程序启动自动“以管理员身份运行"
由于Vista以后win中加入的UAC安全机制,采用Delphi开发的程序如果不右键点击“以管理员身份运行”,则会报错. 在XE2以上的Delphi版本处理这个问题已经非常简单了. 右建点击工程,选择 ...
随机推荐
- linux环境下配置github远程仓库
1.设置git用户和邮箱 git config --global user.name "fujinzhou" git config --global user.email &quo ...
- Clone table header and set as the first element, and replace header's th with td
Clone table header and replace header's th with td var tableHeaderRow = '#tableId tbody tr:nth-child ...
- android 打开GPS的几种方式
1.在讨论打开gps的之前先看下如何检测gps的开关情况: 方式一: boolean gpsEnabled = locationManager.isProviderEnabled(LocationMa ...
- Mysql忘记密码,重新设置
1. 停止mysql 服务 2. 增加参数,启动mysql 服务: mysqld –skip-grant-tables (sudo vi /etc/mysql/my.cnf,在[mysqld]段中 ...
- Perl中的正则表达
前几天用到了Perl语言,主要看了一下Perl中的正则表达式,在各种网页语言中,正则表达式在处理字符串的时候十分有用,所以这里就简单说一下在Perl中正则表达式的应用. 先上代码 #!/usr/bin ...
- Device disconnected
问题:android 调试的时候,Logcat没有任何输出,提示Device disconnected 解决:Devices -- Reset adb
- PHP webserver 之 soap wsdl
强势插入:http://pan.baidu.com/s/1jG62oKm
- 查看某一个点是否在某个多边形内 使用ST_Contains函数
查看某一个点是否在某个多边形内 使用ST_Contains函数 --LINESTRING ( 121.312350 30.971457 , 121.156783 31.092221 , 121.35 ...
- Get the item a SharePoint workflow task is associated with
This is handy. SharePoint helpfully populates the meta data with the GUID of the list and the ID of ...
- tableView中不易被注意到的方法
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{ } 这个方法 在 r ...