Home
last modified time | relevance | path

Searched refs:winkel (Results 1 – 25 of 228) sorted by relevance

12345678910

/dports/german/BBBike/BBBike-3.18/Route/
H A DDescr.pm134 my($entf, $winkel, $richtung, $extra)
140 if (!$winkel) { $winkel = 0 }
141 $winkel = int($winkel/10)*10;
144 if ($winkel < 30 && (!$extra || !$extra->{ImportantAngle})) {
146 } elsif ($winkel >= 160 && $winkel <= 200) { # +/- 20� from 180�
150 ($winkel <= 45 ? M('halb') : '') .
152 "($winkel�) ";
/dports/multimedia/mjpegtools/mjpegtools-2.1.0/y4mutils/
H A Dy4mhist.c186 void makepoint(int laeng, int winkel) in makepoint() argument
195 p1_x = round ( (laeng+la) * cos ((winkel-10) /57.3) ); in makepoint()
196 p1_y = round ( (laeng+la) * sin ((winkel-10) /57.3) ); in makepoint()
201 p2_x = round ( (laeng+la) * cos ((winkel-5) /57.3) ); in makepoint()
202 p2_y = round ( (laeng+la) * sin ((winkel-5) /57.3) ); in makepoint()
212 p2_x = round ( (laeng-la) * cos ((winkel-5) /57.3) ); in makepoint()
213 p2_y = round ( (laeng-la) * sin ((winkel-5) /57.3) ); in makepoint()
223 p2_x = round ( (laeng+la) * cos ((winkel+5) /57.3) ); in makepoint()
224 p2_y = round ( (laeng+la) * sin ((winkel+5) /57.3) ); in makepoint()
234 p2_x = round ( (laeng-la) * cos ((winkel+5) /57.3) ); in makepoint()
[all …]
/dports/devel/itext/itext-4.2.0/toolbox/com/lowagie/toolbox/plugins/
H A DWatermarker.java134 float winkel = (float) Math.atan(recc.getHeight() / in execute() local
136 float m1 = (float) Math.cos(winkel); in execute()
137 float m2 = (float) - Math.sin(winkel); in execute()
138 float m3 = (float) Math.sin(winkel); in execute()
139 float m4 = (float) Math.cos(winkel); in execute()
140 float xoff = (float) ( -Math.cos(winkel) * txtwidth / 2 - Math in execute()
141 .sin(winkel) in execute()
143 float yoff = (float) (Math.sin(winkel) * txtwidth / 2 - Math in execute()
144 .cos(winkel) in execute()
/dports/graphics/p5-Chart/Chart-2.4.10/Chart/
H A DDirection.pm567 my ( $mod, $map, $i, $j, $brush, $color, $x, $y, $winkel, $first_x, $first_y );
637 $winkel = ( 180 - ( $data->[0][$i] % 360 ) ) / 360 * 2 * $pi;
689 $arrow_x = $x - cos( $winkel - $alpha ) * $len;
690 $arrow_y = $y + sin( $winkel - $alpha ) * $len;
693 $arrow_x = $x + sin( $pi / 2 - $winkel - $alpha ) * $len;
694 $arrow_y = $y - cos( $pi / 2 - $winkel - $alpha ) * $len;
752 $winkel = ( 180 - ( $data->[$n][$i] % 360 ) ) / 360 * 2 * $pi;
805 $arrow_x = $x - cos( $winkel - $alpha ) * $len;
806 $arrow_y = $y + sin( $winkel - $alpha ) * $len;
809 $arrow_x = $x + sin( $pi / 2 - $winkel - $alpha ) * $len;
[all …]
/dports/games/billardgl/BillardGL-1.75/src/
H A Dkugeltabellen.cpp37 GLfloat winkel=atan(temp_x/temp_y)/M_PI; in Dreieck() local
38 if (temp_x==0 && temp_y==0) winkel=orient; in Dreieck()
39 if (!winkel) winkel=0; in Dreieck()
40 if (temp_y<0) winkel+=1; in Dreieck()
41 else if (temp_x<0) winkel+=2; in Dreieck()
43 while (winkel<orient-.5) {winkel+=1;} in Dreieck()
44 while (winkel>orient+.5) {winkel-=1;} in Dreieck()
46 orient=winkel; in Dreieck()
47 texcoord[it++]=winkel; in Dreieck()
/dports/german/BBBike/BBBike-3.18/Strassen/
H A DGenerated.pm310 my($winkel, $richtung);
316 if (!defined $winkel) {
317 ($richtung, $winkel) = ('', 0);
325 $strname[$#strname][ROUTE_ANGLE] = $winkel;
339 $val->[ROUTE_ANGLE] = $winkel;
360 next if $winkel < $this_winkel;
463 my($winkel, $richtung);
469 if (!defined $winkel) {
470 ($richtung, $winkel) = ('', 0);
478 $strname[$#strname][ROUTE_ANGLE] = $winkel;
[all …]
/dports/games/cuyo/cuyo-2.1.0/datasrc/pics/
H A Dgen_angst.ml65 let spline winkel hoehe breite =
66 let dx = hoehe /. tan winkel in
67 let dx,dy = if winkel>0.0 then dx,hoehe else -.dx,-.hoehe in
73 let dspline winkel hoehe breite relhoehe =
74 let hoehe,relhoehe = if winkel>0.0
81 let dx = hoehe /. tan winkel in
82 let dx,dy = if winkel>0.0 then dx,hoehe else -.dx,-.hoehe in
92 (breite/.2.0-.hoehe*.koeff/.tan winkel, hoehe*.(koeff-.0.5)),
232 (spline winkel hoehe breite)
234 (dspline winkel hoehe breite relhoehe)
[all …]
H A Dgen_octopi.ml32 let bogen (x,y) winkel laenge kruemmung =
33 let cw,sw = cos winkel, sin winkel in
35 let w' = if pos then winkel-.pi/.2.0 else winkel+.pi/.2.0 in
46 let winkel = (float_of_int (nummer+2))*.pi/.4.0 in
48 | None -> Strecke ((0.5,0.5),(0.5+.cos winkel,0.5+.sin winkel))
49 | Some r -> bogen (0.5,0.5) (winkel-.1.0/.7.0/.r) (3.0/.7.0) r
H A Dgen_flechtwerk.ml69 let winkel = (gradient_richtung nah1 p naehe1)
71 let winkel = winkel /. (2.0*.pi) in
72 let winkel = winkel -. floor winkel in
73 if xor (winkel>=0.5) (drin p)
H A DmdEgo.inc39 #macro Lid(winkel,welche)
43 rotate winkel*x
50 #macro Horn(hoehe,winkel)
55 rotate winkel*x
60 rotate winkel*x
/dports/german/BBBike/BBBike-3.18/
H A Dcbbbike307 my ($str, $entf, $winkel, $richtung) = @{$strnames[$i]};
308 if (!$winkel) { $winkel = 0 }
309 $winkel = int($winkel/10)*10;
310 if ($winkel < 30) {
314 ($winkel <= 45 ? 'halb' : '') .
316 &output("($winkel�) "); # . Strasse::de_artikel($str);
H A DBBBikeCalc.pm114 my($winkel) = norm_arc(atan2($wd[0], $wd[1]));
115 ($wind_dir_from, $wind_dir_to) = ($winkel - CAKE, $winkel + CAKE);
H A DBBBikeUtil.pm206 my $winkel = 0;
219 $winkel = &$acos($acos_arg);
221 ($winkel, $richtung);
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/grid/grid_calculus_bsl/
H A Ddiverses.cpp256 double winkel; in calcExpoAbweichung() local
268 winkel = fabs(w[(ii+1)*3+jj+1]-Expo(j+jj,i+ii)); in calcExpoAbweichung()
269 if (winkel > M_PI) in calcExpoAbweichung()
270 winkel = 2*M_PI-winkel; in calcExpoAbweichung()
271 Erg.Add_Value(j,i, winkel/M_PI); in calcExpoAbweichung()
/dports/databases/py-gdbm/Python-3.8.12/Lib/turtledemo/
H A Dclock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/lang/python310/Python-3.10.1/Lib/turtledemo/
H A Dclock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/lang/python37/Python-3.7.12/Lib/turtledemo/
H A Dclock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/lang/python311/Python-3.11.0a3/Lib/turtledemo/
H A Dclock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/lang/python-tools/Python-3.8.12/Lib/turtledemo/
H A Dclock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/lang/python27/Python-2.7.18/Demo/turtle/
H A Dtdemo_clock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/lang/python38/Python-3.8.12/Lib/turtledemo/
H A Dclock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/databases/py-sqlite3/Python-3.8.12/Lib/turtledemo/
H A Dclock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/lang/python-legacy/Python-2.7.18/Demo/turtle/
H A Dtdemo_clock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/turtledemo/
H A Dclock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)
/dports/lang/python39/Python-3.9.9/Lib/turtledemo/
H A Dclock.py16 def jump(distanz, winkel=0): argument
18 right(winkel)
20 left(winkel)

12345678910