summaryrefslogtreecommitdiff
path: root/unit1.pas
blob: 2a39e116a9f3fba1265dec5b834f84e9079b1246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
unit Unit1;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, Spin,
  Penroseunit;

type

  { TForm1 }

  TForm1 = class(TForm)
    Image1: TImage;
    SpinEdit1: TSpinEdit;
    procedure SpinEdit1Change(Sender: TObject);
  private
    P: tPenrose;
  public

  end;

var
  Form1: TForm1;

implementation

{$R *.lfm}

{ TForm1 }

procedure TForm1.SpinEdit1Change(Sender: TObject);
begin
  P:=TPenrose.create(SpinEdit1.Value);
  P.Zeichnen(Image1.Width,Image1.Height,Image1.Canvas);
  P.Free;
  form1.caption:=floattostr(cos(90));
end;

end.