interface
{$J+} // Muss eingetragen werden um Konstanten inheralb neu zu definieren
uses Math
var
Form1: TForm1;
br2, bb3, bb6, bh2:integer;
const sabbruch : boolean = true;
//
procedure TForm1.FormCreate(Sender: TObject);
begin
randomize;
end;
procedure TForm1.Paintbox1Paint(Sender: TObject);
var
bitmap:tbitmap;
ziel:tcanvas;
radius:integer;
begin
bitmap:=tbitmap.create;
bitmap.width:=Paintbox1.width;
bitmap.height:=Paintbox1.height;
bb3:=bitmap.width div 3;
bh2:=bitmap.height div 4;
bb6:=bb3 div 2;
radius:=bb6-10;
if radius>bh2-10 then radius:=bh2-10;
br2:=radius;
ziel:=bitmap.canvas;
ziel.pen.color:=clblue;
ziel.ellipse(bb6-radius,bh2-radius,bb6+radius+1,bh2+radius+1);
ziel.ellipse(bb6+bb3-radius,bh2-radius,bb6+bb3+radius+1,bh2+radius+1);
ziel.ellipse(bb6+2*bb3-radius,bh2-radius,bb6+2*bb3+radius+1,bh2+radius+1);
ziel.ellipse(bb6-radius,3*bh2-radius,bb6+radius+1,3*bh2+radius+1);
ziel.ellipse(bb6+bb3-radius,3*bh2-radius,bb6+bb3+radius+1,3*bh2+radius+1);
ziel.ellipse(bb6+2*bb3-radius,3*bh2-radius,bb6+2*bb3+radius+1,3*bh2+radius+1);
ziel.font.name:='Verdana';
ziel.font.size:=8;
ziel.textout(bb6+radius div 2+1,bh2+radius-16,'Sehnen');
ziel.textout(bb6+bb3+radius div 2+1,bh2+radius-16,'Sehnen');
ziel.textout(bb6+2*bb3+radius div 2+1,bh2+radius-16,'Sehnen');
ziel.textout(bb6+radius div 2+2,3*bh2+radius-16,'Mittelpunkte');
ziel.textout(bb6+bb3+radius div 2+2,3*bh2+radius-16,'Mittelpunkte');
ziel.textout(bb6+2*bb3+radius div 2+2,3*bh2+radius-16,'Mittelpunkte');
Paintbox1.canvas.draw(0,0,bitmap);
bitmap.free;
end;
procedure TForm1.Button1Click(Sender: TObject);
var vwert,diff,wi1,wi2,x1,y1,x2,y2,xm,ym,abstand:real;
anz,treffer,treffer2,treffer3:integer;
begin
if sabbruch=false then
sabbruch:=true
else
begin
sabbruch:=false;
button1.caption:='Abbruch';
Paintbox1paint(sender);
vwert:=sqrt(3)*br2;
anz:=1;
treffer:=0;
treffer2:=0;
treffer3:=0;
Paintbox1.canvas.brush.color:=clwhite;
Paintbox1.canvas.pen.color:=clsilver;
repeat
wi1:=2*pi*random;
wi2:=2*pi*random;
x1:=br2*cos(wi1);
y1:=br2*sin(wi1);
x2:=br2*cos(wi2);
y2:=br2*sin(wi2);
abstand:=sqrt(sqr(x1-x2)+sqr(y1-y2));
Paintbox1.canvas.moveto(round(bb6+x1),round(bh2-y1));
if anz<500 then Paintbox1.canvas.lineto(round(bb6+x2),round(bh2-y2));
if abstand>vwert then
inc(treffer);
xm:=(x1+x2)/2;
ym:=(y1+y2)/2;
Paintbox1.canvas.pixels[round(bb6+xm),round(3*bh2-ym)]:=clblue;
label15.caption:=inttostr(anz);
label1.caption:=inttostr(treffer);
label2.caption:=format('%2.3f %%',[100*treffer/anz]);
//methode 2
wi1:=2*pi*random;
diff:=br2*random;
wi2:=arccos(diff/br2);
x1:=br2*cos(wi1-wi2);
y1:=br2*sin(wi1-wi2);
x2:=br2*cos(wi1+wi2);
y2:=br2*sin(wi1+wi2);
abstand:=sqrt(sqr(x1-x2)+sqr(y1-y2));
Paintbox1.canvas.moveto(round(bb6+bb3+x1),round(bh2-y1));
if anz<500 then Paintbox1.canvas.lineto(round(bb6+bb3+x2),round(bh2-y2));
if abstand>vwert then
inc(treffer2);
xm:=(x1+x2)/2;
ym:=(y1+y2)/2;
Paintbox1.canvas.pixels[round(bb6+bb3+xm),round(3*bh2-ym)]:=clblue;
label4.caption:=inttostr(treffer2);
label5.caption:=format('%2.3f %%',[100*treffer2/anz]);
//
//methode 3
repeat
x1:=2*br2*random-br2;
y1:=2*br2*random-br2;
diff:=sqrt(sqr(x1)+sqr(y1));
until diff<br2;
wi1:=arctan2(y1,x1);
wi2:=arccos(diff/br2);
x1:=br2*cos(wi1-wi2);
y1:=br2*sin(wi1-wi2);
x2:=br2*cos(wi1+wi2);
y2:=br2*sin(wi1+wi2);
abstand:=sqrt(sqr(x1-x2)+sqr(y1-y2));
Paintbox1.canvas.moveto(round(bb6+2*bb3+x1),round(bh2-y1));
if anz<500 then Paintbox1.canvas.lineto(round(bb6+2*bb3+x2),round(bh2-y2));
if abstand>vwert then
inc(treffer3);
xm:=(x1+x2)/2;
ym:=(y1+y2)/2;
Paintbox1.canvas.pixels[round(bb6+2*bb3+xm),round(3*bh2-ym)]:=clblue;
label13.caption:=inttostr(treffer3);
label14.caption:=format('%2.3f %%',[100*treffer3/anz]);
if anz mod 10 = 0 then application.processmessages;
inc(anz);
until {(anz>anz0) or }sabbruch;
sabbruch:=true;
button1.caption:='Simulation';
end;
end;

Calculate Bertrand-Experiment
Abonnieren
Posts (Atom)
Beliebte Posts
-
Windows Key Sniffer 0.82 - Update 08/2024 Der Windows Key Sniffer hat mir im Laufe der Zeit viel Arbeit erspart und unterstützt, viele Wi...
-
Network Source Code Update Source Code Network Update : https://asciigen.blogspot.com/p/network.html Send Message 1.0 Source Server Client ...
-
Windows Defender Bypass Version 0.75 - Update 11/2024 Den Windows 10-eigenen Virenschutz Defender kann man auf mehreren Wegen abschalt...
-
ASCii GIF Animator Update Version 0.68 (32 bit) - 11/2024 Bei dieser überarbeiteten Version ist die Kompatibilität zu den verschiedenen...
-
MD5 Hacker v.0.26 - Update 08.2024 MD5 Hashs sollten eigentlich nicht entschlüsselt werden können. Jedoch gibt es Tools, mit welchen auch ...
-
Host Editor Version 0.65 - Update 01/2025 Hosts File Editor allows for the easy editing of host files and backup creation. Create your ...
-
Dir Sniffer Version 0.11 - Update 02/2025 Dir Sniffer ist ein kleines aber nützliches Tool um herauszufinden, was ihr Programm auf ihrem...
-
Oldskool Font Generator v.0.29 - Update 11/2023 Das Tool stell 508 Bitmap Fonts zu Verfügung. Eigene Fonts können integriert werden, sie...
-
Hard Crypter 0.19 - Update 12/2023 Mit diesem Tool können Sie jede beliebige Datei auf dem Windows-System verschlüsseln. Die Byte-Erse...
Keine Kommentare:
Kommentar veröffentlichen