-
Notifications
You must be signed in to change notification settings - Fork 0
/
KURVEN.PAS
executable file
·1499 lines (1400 loc) · 26.6 KB
/
KURVEN.PAS
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
program kurvenschar;
uses crt,graph;
var
krit,m33,m34,m3,nend,hu,ho,zx,zy,m,n,hilf,hilfh,hilfw:integer;
h000,farbe0,farbe1,farbe2,farbe3,farbe4,farbe5,farbe6,farbe7,farbe8,l,farbe,z,k,treiber,modus:integer;
da,hilfe,x3,mt,ms,xstart,x2,xw,xe1,xe2,xe3,xw1,xw2,dx,a,b,c,d,e,x,y,x0,x1,y0,y1,y2,y3:real;
wahl,wahl1:char;
ortx8,ortx9,ortx10,ortx11,ortx7,ortx6,ortx1,ortx2,ortx3,ortx4,ortx5:string;
procedure en;
begin
if h000=0 then
begin
farbe0:=15;
farbe1:=8;
farbe2:=12;
farbe3:=9;
farbe4:=2;
farbe5:=3;
farbe6:=13;
farbe7:=5;
farbe8:=10;
end;
if h000=1 then
begin
farbe0:=1;
farbe1:=15;
farbe2:=12;
farbe3:=14;
farbe4:=10;
farbe5:=11;
farbe6:=13;
farbe7:=9;
farbe8:=2;
end;
end;
procedure versuch;
begin
if l=0 then y0:=z*(1/8*x*x*x*x-3/2*a*x*x+5/2*a*a);
if l=1 then y0:=z*(1/2*x*x*x-3*a*x);
if l=2 then y0:=z*(3/2*x*x-3*a);
if l=3 then y0:=z*(-1/18*x*x*x*x);
if l=4 then y0:=z/8*(x*x*x-3*a*x*x+3*a*a*x-12*x);
if l=5 then y0:=z/8*(3*x*x-6*a*x+3*a*a-12);
if l=6 then y0:=z/8*(6*x-6*a);
if l=7 then y0:=z/8*x*x*(x-6);
if l=8 then y0:=z/8*x*x*(x+6);
if l=9 then y0:=z/8*x*(x*x-12);
if l=10 then y0:=z/32*x*(x*x-48);
end;
procedure f0;
begin
x0:=-280;
dx:=0.2;
repeat
x0:=x0+dx;
x:=x0/z;
versuch;
if (y0<=180) and (y0>=-180) then
begin
putpixel(320+round(x0),240-round(y0),farbe);
end;
until x0>=280;
end;
procedure f;
begin
farbe:=farbe3;
l:=0;
f0;
end;
procedure f1;
begin
farbe:=farbe2;
l:=1;
f0;
end;
procedure f2;
begin
farbe:=farbe4;
l:=2;
f0;
end;
procedure ft;
begin
farbe:=farbe6;
l:=3;
f0;
end;
procedure f4;
begin
farbe:=farbe3;
l:=4;
f0;
end;
procedure f5;
begin
farbe:=farbe2;
l:=5;
f0;
end;
procedure f6;
begin
farbe:=farbe4;
l:=6;
f0;
end;
procedure f7;
begin
farbe:=farbe6;
l:=7;
f0;
end;
procedure f8;
begin
farbe:=farbe7;
l:=8;
f0;
end;
procedure f9;
begin
farbe:=farbe8;
l:=9;
f0;
end;
procedure f10;
begin
farbe:=farbe5;
l:=10;
f0;
end;
procedure loeschf;
begin
farbe:=farbe0;
l:=0;
f0;
end;
procedure loeschf1;
begin
farbe:=farbe0;
l:=1;
f0;
end;
procedure loeschf2;
begin
farbe:=farbe0;
l:=2;
f0;
end;
procedure loeschft;
begin
farbe:=farbe0;
l:=3;
f0;
end;
procedure loeschf4;
begin
farbe:=farbe0;
l:=4;
f0;
end;
procedure loeschf5;
begin
farbe:=farbe0;
l:=5;
f0;
end;
procedure loeschf6;
begin
farbe:=farbe0;
l:=6;
f0;
end;
procedure loeschf7;
begin
farbe:=farbe0;
l:=7;
f0;
end;
procedure loeschf8;
begin
farbe:=farbe0;
l:=8;
f0;
end;
procedure loeschf9;
begin
farbe:=farbe0;
l:=9;
f0;
end;
procedure loeschf10;
begin
farbe:=farbe0;
l:=10;
f0;
end;
procedure menue;
begin
treiber:=detect;
initgraph(treiber,modus,'');
setbkcolor(15);
setcolor(1);
outtextxy(50,230,'Kurvenschar y = 1/8 x^4 - 3/2 a xý + 5/2 aý ');
outtextxy(50,280,'Kurvenschar y = 1/8 ( xü - 3 a xý + 3 aý x - 12 x ) ');
outtextxy(490,230,' -> 1');
outtextxy(490,280,' -> 2');
outtextxy(120,330,'sin(1/x) , x sin(1/x) und xý sin(1/x) -> 3');
outtextxy(405,400,'beenden -> b');
setcolor(7);
outtextxy(20,465,'heller Hintergrund (h) dunkler Hintergrund (d)');
end;
procedure setz0;
begin
outtextxy(300,237+z,'-1');
outtextxy(310,237-z,'1');
outtextxy(318+z,245,'1');
outtextxy(315-z,245,'-1');
line(320+z,235,320+z,240);
line(320-z,235,320-z,240);
line(320,240+z,325,240+z);
line(320,240-z,325,240-z);
end;
procedure setz;
begin
setcolor(farbe1);
line(60,240,580,240);
line(320,60,320,420);
setz0;
end;
procedure loesch;
begin
setcolor(farbe0);
setz0;
end;
procedure graphik0;
begin
setbkcolor(farbe0);
setcolor(farbe1);
line(10,30,630,30);
line(10,450,630,450);
line(10,30,10,450);
line(630,30,630,450);
outtextxy(115,15,'Kurvenschar');
setcolor(farbe2);
outtextxy(120,35,'1.Ableitung (1/2) ');
setcolor(farbe4);
outtextxy(120,35,' 2.Ableitung(3/4) ');
setcolor(farbe1);
outtextxy(120,35,' l”schen (l)');
outtextxy(45,455,' a vergrӇern (A) a vorgeben (v) beenden (b)');
outtextxy(45,465,' verkleinern (a) Startwerte wiederherstellen(0) zoomen (z/Z) ');
end;
procedure graphik1;
begin
graphik0;
setcolor(farbe3);
outtextxy(230,15,'y = 1/8 * x^4 - 3/2 * a * xý + 5/2 * aý ');
setcolor(farbe6);
outtextxy(150,45,'Kurve aller Tiefpunkte setzen/l”schen (t/T)');
end;
procedure setz1;
begin
f;
setcolor(7);
str(da/100:5:4,ortx5);
outtextxy(100,440,ortx5);
outtextxy(60,440,'da = ver„ndern (d/D) Spur setzen/l”schen/nicht setzen (5/w/6)');
setcolor(farbe3);
str(a:5:4,ortx4);
outtextxy(100,430,ortx4);
outtextxy(70,430,'a =');
str((1/8):4:3,ortx1);
outtextxy(235,430,ortx1);
str((-3/2*a):4:2,ortx2);
outtextxy(340,430,ortx2);
str((5/2*a*a):4:2,ortx3);
outtextxy(440,430,ortx3);
outtextxy(200,430,'y = * x^4 + * xý + ');
setz;
end;
procedure s5;
begin
setcolor(7);
str(da/100:5:4,ortx5);
outtextxy(100,440,ortx5);
outtextxy(60,440,'da =');
end;
procedure hilfe1;
begin
xe1:=sqrt(6*a);
xe2:=-sqrt(6*a);
y:=z*(1/8*xe1*xe1*xe1*xe1-3/2*a*xe1*xe1+5/2*a*a);
y1:=z*(1/8*xe2*xe2*xe2*xe2-3/2*a*xe2*xe2+5/2*a*a);
y2:=z*(1/2*xe1*xe1*xe1-3*a*xe1);
y3:=z*(1/2*xe2*xe2*xe2-3*a*xe2);
circle(320,240,2);
line(320,240,320,240-round(z*5/2*a*a));
circle(320+round(z*xe1),240-round(y2),2);
line(320+round(z*xe1),240-round(y),320+round(z*xe1),240-round(y2));
line(320+round(z*xe2),240-round(y1),320+round(z*xe2),240-round(y3));
circle(320+round(z*xe2),240-round(y3),2);
end;
procedure hilfe2;
begin
circle(320,240-round(z*5/2*a*a),2);
circle(320+round(z*xe1),240-round(y),2);
circle(320+round(z*xe2),240-round(y1),2);
end;
procedure setz1b;
begin
setcolor(farbe2);
setlinestyle(1,0,1);
if (a>0) then
begin
hilfe1;
setcolor(farbe3);
hilfe2;
end;
setlinestyle(0,0,1);
end;
procedure hilfe3;
begin
xw:=sqrt(2*a);
circle(320+round(xw*z),240,2);
circle(320+round(-xw*z),240,2);
end;
procedure setz1d;
begin
setcolor(farbe4);
setlinestyle(1,0,1);
if (a>0) then
begin
hilfe3;
end;
setlinestyle(0,0,1);
end;
procedure loesch1a;
begin
loeschf1;
loeschf2;
setcolor(farbe0);
if (a>0) then
begin
hilfe1;
hilfe2;
hilfe3;
end;
end;
procedure loesch1;
begin
loeschf;
setcolor(farbe0);
outtextxy(100,430,ortx4);
outtextxy(235,430,ortx1);
outtextxy(340,430,ortx2);
outtextxy(440,430,ortx3);
loesch1a;
end;
procedure loesch11;
begin
setcolor(farbe0);
outtextxy(100,430,ortx4);
outtextxy(235,430,ortx1);
outtextxy(340,430,ortx2);
outtextxy(440,430,ortx3);
end;
procedure l5;
begin
setcolor(farbe0);
outtextxy(100,440,ortx5);
end;
procedure ausgabe1;
begin
z:=50;
a:=0.5;
hilf:=0;
setz1;
wahl:=' ';
repeat
if keypressed then wahl:=readkey;
case wahl of
'1':
begin
f1;
wahl:=' ';
end;
'3':
begin
f2;
wahl:=' ';
end;
'2':
begin
setz1b;
wahl:=' ';
end;
'4':
begin
setz1d;
wahl:=' ';
end;
'5':
begin
krit:=1;
wahl:=' ';
end;
'6':
begin
krit:=0;
wahl:=' ';
end;
'D':
begin
l5;
da:=da*1.1;
s5;
wahl:=' ';
end;
'd':
begin
l5;
da:=da/1.1;
s5;
wahl:=' ';
end;
'l':
begin
loesch1a;
setz;
wahl:=' ';
end;
't':
begin
if a>0 then
ft;
hilf:=1;
wahl:=' ';
end;
'T':
begin
if a>0 then
loeschft;
hilf:=0;
setz;
wahl:=' ';
end;
'z':
begin
if z>=2 then
begin
loesch;
loesch1;
if hilf=1 then loeschft;
z:=z-1;
setz;
setz1;
if hilf=1 then ft;
wahl:=' ';
end;
end;
'Z':
begin
loesch;
loesch1;
if hilf=1 then loeschft;
z:=z+1;
setz;
setz1;
if hilf=1 then ft;
wahl:=' ';
end;
'w':
begin
cleardevice;
graphik1;
setz1;
if hilf=1 then ft;
wahl:=' ';
end;
'a':
begin
if krit=0 then loesch1;
loesch11;
a:=round(100*a-da)/100;
setz1;
if hilf=1 then ft;
wahl:=' ';
end;
'A':
begin
if krit=0 then loesch1;
loesch11;
a:=round(100*a+da)/100;
setz1;
if hilf=1 then ft;
wahl:=' ';
end;
'0':
begin
cleardevice;
graphik1;
z:=50;
a:=0.5;
setz;
setz1;
wahl:=' ';
end;
'v':
begin
loesch1a;
setz;
setcolor(farbe3);
outtextxy(40,410,'a eingeben');
read(a);
cleardevice;
graphik1;
setz;
setz1;
wahl:=' ';
end;
end;
until wahl='b';
end;
procedure graphik2;
begin
graphik0;
setcolor(farbe3);
outtextxy(230,15,'y = 1/8 ( xü - 3 a xý + 3 aý x - 12 x )');
setcolor(farbe1);
outtextxy(50,45,'Kurve aller Tief-, Hoch-, Wendepunkte setzen/l”schen (t/T//h/H//w/W)');
setcolor(farbe6);
outtextxy(50,45,' Tief-, Hoch-, Wendepunkte t/T ');
setcolor(farbe7);
outtextxy(50,45,' Hoch-, Wendepunkte h/H ');
setcolor(farbe8);
outtextxy(50,45,' Wendepunkte w/W ');
setcolor(farbe5);
outtextxy(70,425,'Hllkurve setzen/l”schen (S/L)');
setcolor(farbe1);
outtextxy(70,425,' alle Hilfslinien l”schen (9)');
setcolor(7);
outtextxy(360,410,'da = ver„ndern (d/D)');
outtextxy(330,400,'Spur setzen/weg/nicht setzen (5/6/7)');
end;
procedure setz2;
begin
f4;
setcolor(7);
str(da/100:5:4,ortx5);
outtextxy(400,410,ortx5);
setcolor(farbe3);
str(a:4:2,ortx4);
outtextxy(120,435,ortx4);
outtextxy(90,435,'a =');
str((1/8):4:3,ortx1);
outtextxy(265,435,ortx1);
str((-3/8*a):4:2,ortx2);
outtextxy(370,435,ortx2);
str((3/8*a*a-12):4:2,ortx3);
outtextxy(470,435,ortx3);
outtextxy(230,435,'y = * xü + * xý + ');
setz;
end;
procedure setz2b;
begin
setcolor(farbe2);
setlinestyle(1,0,1);
xe1:=a-2;
xe2:=a+2;
y:=z/8*(xe1*xe1*xe1-3*a*xe1*xe1+3*a*a*xe1-12*xe1);
y1:=z/8*(3*xe1*xe1-6*a*xe1+3*a*a-12);
y2:=z/8*(xe2*xe2*xe2-3*a*xe2*xe2+3*a*a*xe2-12*xe2);
y3:=z/8*(3*xe2*xe2-6*a*xe2+3*a*a-12);
circle(320+round(z*xe1),240-round(y1),2);
line(320+round(z*xe1),240-round(y),320+round(z*xe1),240-round(y1));
line(320+round(z*xe2),240-round(y2),320+round(z*xe2),240-round(y3));
circle(320+round(z*xe2),240-round(y3),2);
setcolor(farbe3);
circle(320+round(z*xe1),240-round(y),2);
circle(320+round(z*xe2),240-round(y2),2);
setlinestyle(0,0,1);
end;
procedure setz2d;
begin
setcolor(farbe4);
setlinestyle(1,0,1);
y:=z/8*(a*a*a-3*a*a*a+3*a*a*a-12*a);
y1:=z/8*(6*a-6*a);
circle(320+round(a*z),240-round(y1),2);
line(320+round(a*z),240-round(y),320+round(a*z),240-round(y1));
setcolor(farbe3);
circle(320+round(a*z),240-round(y),2);
setlinestyle(0,0,1);
end;
procedure loesch2a;
begin
loeschf5;
loeschf6;
setcolor(farbe0);
xe1:=a-2;
xe2:=a+2;
y:=z/8*(xe1*xe1*xe1-3*a*xe1*xe1+3*a*a*xe1-12*xe1);
y1:=z/8*(3*xe1*xe1-6*a*xe1+3*a*a-12);
y2:=z/8*(xe2*xe2*xe2-3*a*xe2*xe2+3*a*a*xe2-12*xe2);
y3:=z/8*(3*xe2*xe2-6*a*xe2+3*a*a-12);
circle(320+round(z*xe1),240-round(y1),2);
line(320+round(z*xe1),240-round(y),320+round(z*xe1),240-round(y1));
line(320+round(z*xe2),240-round(y2),320+round(z*xe2),240-round(y3));
circle(320+round(z*xe2),240-round(y3),2);
circle(320+round(z*xe1),240-round(y),2);
circle(320+round(z*xe2),240-round(y2),2);
y:=z/8*(a*a*a-3*a*a*a+3*a*a*a-12*a);
y1:=z/8*(6*a-6*a);
circle(320+round(a*z),240-round(y1),2);
line(320+round(a*z),240-round(y),320+round(a*z),240-round(y1));
circle(320+round(a*z),240-round(y),2);
end;
procedure loesch2;
begin
loeschf4;
setcolor(farbe0);
outtextxy(120,435,ortx4);
outtextxy(265,435,ortx1);
outtextxy(370,435,ortx2);
outtextxy(470,435,ortx3);
loesch2a;
end;
procedure loesch21;
begin
setcolor(farbe0);
outtextxy(120,435,ortx4);
outtextxy(265,435,ortx1);
outtextxy(370,435,ortx2);
outtextxy(470,435,ortx3);
end;
procedure s25;
begin
setcolor(7);
str(da/100:5:4,ortx5);
outtextxy(400,410,ortx5);
end;
procedure l25;
begin
setcolor(farbe0);
outtextxy(400,410,ortx5);
end;
procedure ausgabe2;
begin
z:=30;
a:=0.5;
setz2;
s25;
wahl:=' ';
repeat
if keypressed then wahl:=readkey;
case wahl of
'1':
begin
f5;
wahl:=' ';
end;
'3':
begin
f6;
wahl:=' ';
end;
'2':
begin
setz2b;
wahl:=' ';
end;
'4':
begin
setz2d;
wahl:=' ';
end;
'5':
begin
krit:=1;
wahl:=' ';
end;
'7':
begin
krit:=0;
wahl:=' ';
end;
'6':
begin
cleardevice;
graphik2;
setz2;
wahl:=' ';
end;
'D':
begin
l25;
da:=da*1.1;
s25;
wahl:=' ';
end;
'd':
begin
l25;
da:=da/1.1;
s25;
wahl:=' ';
end;
'l':
begin
loesch2a;
setz;
wahl:=' ';
end;
'S':
begin
f10;
wahl:=' ';
end;
'L':
begin
loeschf10;
setz;
wahl:=' ';
end;
't':
begin
f7;
hilf:=1;
wahl:=' ';
end;
'T':
begin
loeschf7;
hilf:=0;
setz;
wahl:=' ';
end;
'h':
begin
f8;
hilfh:=1;
wahl:=' ';
end;
'H':
begin
loeschf8;
hilfh:=0;
setz;
wahl:=' ';
end;
'w':
begin
f9;
hilfw:=1;
wahl:=' ';
end;
'W':
begin
loeschf9;
hilfw:=0;
setz;
wahl:=' ';
end;
'9':
begin
cleardevice;
graphik2;
setz;
setz2;
wahl:=' ';
end;
'z':
begin
if z>=2 then
begin
loesch;
loesch2;
if hilf=1 then loeschf7;
if hilfh=1 then loeschf8;
if hilfw=1 then loeschf9;
z:=z-1;
setz;
setz2;
if hilf=1 then f7;
if hilfh=1 then f8;
if hilfw=1 then f9;
wahl:=' ';
end;
end;
'Z':
begin
loesch;
loesch2;
if hilf=1 then loeschf7;
if hilfh=1 then loeschf8;
if hilfw=1 then loeschf9;
z:=z+1;
setz;
setz2;
if hilf=1 then f7;
if hilfh=1 then f8;
if hilfw=1 then f9;
wahl:=' ';
end;
'a':
begin
if krit=0 then loesch2;
loesch21;
a:=round(100*a-da)/100;
setz2;
if hilf=1 then f7;
if hilfh=1 then f8;
if hilfw=1 then f9;
wahl:=' ';
end;
'A':
begin
if krit=0 then loesch2;
loesch21;
a:=round(100*a+da)/100;
setz2;
if hilf=1 then f7;
if hilfh=1 then f8;
if hilfw=1 then f9;
wahl:=' ';
end;
'0':
begin
cleardevice;
graphik2;
z:=30;
a:=0.5;
setz;
setz2;
wahl:=' ';
end;
'v':
begin
loesch2a;
setcolor(farbe3);
outtextxy(40,410,'a eingeben');
read(a);
cleardevice;
graphik2;
setz;
setz2;
wahl:=' ';
end;
end;
until wahl='b';
end;
procedure p1;
begin
cleardevice;
en;
da:=5;
krit:=1;
graphik1;
ausgabe1;
menue;
end;
procedure p2;
begin
cleardevice;
en;
da:=10;
krit:=1;
graphik2;
ausgabe2;
menue;
end;
procedure graphik3;
begin
setbkcolor(farbe0);
setcolor(7);
outtextxy(40,40,'a[n]=1/(x+2*n*pi) (8) / von links (9) // l”schen (l) // x „ndern (m/M)');
outtextxy(45,51,'Beispiele unter (6/7)');
setcolor(farbe1);
line(10,30,630,30);
line(10,450,630,450);
line(10,30,10,450);
line(630,30,630,450);
outtextxy(40,460,'Zoomen in x-Richtung (x/X) , in y-Richtung (y/Y) , normaler Zoom (z/Z) ');
outtextxy(50,470,'Original wiederherstellen (w) n ver„ndern (n/N) beenden (b)');
outtextxy(80,15,'Die Funktionen sin(1/x) , x sin(1/x) und xý sin(1/x)');
outtextxy(50,440,'sin(1/x) , x sin(1/x) , xý sin(1/x) hinzufgen/l”schen (0/1/2/3/4/5)');
setcolor(farbe3);
outtextxy(80,15,' sin(1/x) ');
outtextxy(50,440,'sin(1/x) 0 1 ');
setcolor(farbe2);
outtextxy(80,15,' x sin(1/x) ');
outtextxy(50,440,' x sin(1/x) 2 3 ');
setcolor(farbe4);
outtextxy(80,15,' xý sin(1/x)');
outtextxy(50,440,' xý sin(1/x) 4 5');
end;
procedure versuch3;
begin
if l=0 then y0:=zy*(sin(1/x));
if l=1 then y0:=zy*(x*sin(1/x));
if l=2 then y0:=zy*(x*x*sin(1/x));
end;
procedure f000;
begin
for m:=1 to 800 do
begin
x0:=-zx/280-m*pi/400;
for n:=0 to nend do
begin
x:=1/(x0-2*n*pi);
versuch3;
if (y0>-160) and (y0<160) then
putpixel(320+round(zx*x),240-round(y0),farbe);
end;
end;
for m:=1 to 800 do
begin
x0:=zx/280+m*pi/400;
for n:=0 to nend do
begin
x:=1/(x0+2*n*pi);
versuch3;
if (y0>-160) and (y0<160) then
putpixel(320+round(zx*x),240-round(y0),farbe);
end;