其他分享
首页 > 其他分享> > Delphi 与 DirectX 之 DelphiX(82): TDIB.DrawMandelbrot();

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

作者:互联网

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


本例效果图:

o_091195.gif

代码文件:
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)  编辑  收藏

标签:1.5,DrawMandelbrot,end,TDIB,Delphi,TForm1,DIB,DXPaintBox1
来源: https://blog.51cto.com/u_14617575/2744945