Delphi 与 DirectX 之 DelphiX(82): TDIB.DrawMandelbrot();

Delphi 与 DirectX 之 DelphiX(82): TDIB.DrawMandelbrot();


本例效果图:

Delphi 与 DirectX 之 DelphiX(82): TDIB.DrawMandelbrot();

代码文件:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, DIB, StdCtrls;

type
  TForm1 = class(TForm)
    DXPaintBox1: TDXPaintBox;
    procedure FormCreate(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
  DXPaintBox1.Align := alClient;
  DXPaintBox1.DIB.SetSize(DXPaintBox1.ClientWidth, DXPaintBox1.ClientHeight, 24);
  DXPaintBox1.DIB.DrawMandelbrot(1, -2, 1.5, -1.5);
end;

end.

posted on 2009-01-19 23:11  万一  阅读(1329)  评论(0)  编辑  收藏
上一篇:Delphi 编译器、编译指令、条件编译指令(预编译指令)


下一篇:Delphi实现win10视频壁纸