File: circlespeedprofile.mp

package info (click to toggle)
texlive-base 2020.20210202-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 791,092 kB
  • sloc: perl: 45,038; sh: 4,926; makefile: 4,655; ansic: 2,266; ruby: 2,231; tcl: 2,156; xml: 1,874; python: 822; cpp: 695; awk: 606; lisp: 199; sed: 8
file content (43 lines) | stat: -rw-r--r-- 1,046 bytes parent folder | download | duplicates (8)
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
% circlespeedprofile.mp
% L. Nobre G.
% 2012

prologues := 1;

beginfig(1);
  numeric u, s, a, ai, as, af, dist, b, ray;
  pen one;
  pair poi, ref, tip, cen, contactpoi, toppoi;
  u = 10cm;
  s = 0.5;
  ai = 270;
  as = -8;
  af = -90-as;
  one = pencircle scaled 0.015u;
  draw (-0.5u*(1+s,1))--(u,-0.5u) withpen one withcolor 0.5white;
  draw fullcircle scaled u withpen one;
  contactpoi = (0,-0.5u);
  toppoi = (0,0.5u);
  cen = 0.5*(contactpoi+toppoi+(s*u,0));
  ray = abs( cen-toppoi );
  draw fullcircle scaled 2ray shifted cen withpen one withcolor red;
  ref = (0,-0.5u);
  ahangle := 30;
  ahlength := 0.03u;
  for a=ai step as until af:
    poi := 0.5u*dir(a);
    dist := abs( poi-ref );
    tip := poi+s*dist*dir(0.5*a-45);
    drawarrow poi--tip;
  endfor;
  % path prof;
  % prof = for a=ai step as until af:
  %     hide( poi := 0.5u*dir(a);
  %     dist := abs( poi-ref);
  %     tip := (poi+s*dist*dir(0.5*a-45));
  %     drawarrow poi--tip;)
  %     tip.. endfor cycle;
  %  draw prof withpen one withcolor red;
endfig;
 
end.