Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
metapost [2020/12/13 18:54] – [Walking and climbing man in scale on the map] sluka | metapost [2024/11/17 06:04] (current) – [Area Symbols] add link to https://colorcodes.io brucemutton | ||
---|---|---|---|
Line 143: | Line 143: | ||
% show U alignment box light blue | % show U alignment box light blue | ||
q:= (xpart U, -ypart U) -- (xpart U, ypart U) -- (-xpart U, ypart U) -- (-xpart U, -ypart U) -- cycle; | q:= (xpart U, -ypart U) -- (xpart U, ypart U) -- (-xpart U, ypart U) -- (-xpart U, -ypart U) -- cycle; | ||
- | thdraw q shifted -(xpart alignment * xpart U, ypart alignment * ypart U) rotated -rotation withpen PenD withcolor 0.5blue+0.5white; | + | thdraw q shifted -(xpart alignment * xpart U, ypart alignment * ypart U) rotated -rotation withpen PenD withcolor 0.5[blue, |
% show u box grey | % show u box grey | ||
- | thdraw unitsquare scaled u shifted (-0.5u, -0.5u) withpen PenD withcolor 0.1black+0.5white; | + | thdraw unitsquare scaled u shifted (-0.5u, -0.5u) withpen PenD withcolor 0.2[black, |
% % % | % % % | ||
| | ||
Line 224: | Line 224: | ||
fi; | fi; | ||
picture thetext; | picture thetext; | ||
- | thetext: | + | thetext: |
if A = (-1,1): | if A = (-1,1): | ||
p_label.ulft(thetext, | p_label.ulft(thetext, | ||
Line 770: | Line 770: | ||
text en "point u: | text en "point u: | ||
text en "point u: | text en "point u: | ||
+ | |||
+ | Notes: | ||
+ | Use " | ||
+ | Climbing one has center where the rope should go on the harness... | ||
+ | The scale on the map and in the legend is matching just for 1:500... | ||
+ | |||
+ | ===Region names symbol=== | ||
+ | In the Hirlatz cave we use this symbol to tell the name of the adjacent (preview) maps. | ||
+ | It is quite customizable and especially shows a way how to do label boxes. | ||
+ | By default it prints the current surveys name in a white-filled box with rounded corners. | ||
+ | You can adjust it per symbol by giving "-attr <var> < | ||
+ | |||
+ | From Benedikt Hallinger for Therion 6.0.3 | ||
+ | |||
+ | {{ :: | ||
+ | |||
+ | # Symbol to denote assigned survey. | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | def p_u_mappe(expr pos, theta, sc, al) = | ||
+ | T:=identity aligned al rotated theta scaled sc shifted pos; | ||
+ | begingroup; | ||
+ | % Basic config | ||
+ | bordersmooth: | ||
+ | bordermargin: | ||
+ | basescale: | ||
+ | fillsize: | ||
+ | if known(ATTR_bordersmooth): | ||
+ | if known(ATTR_bordermargin): | ||
+ | if known(ATTR_basescale): | ||
+ | if known(ATTR_fillsize): | ||
+ | | ||
+ | % GET LABEL TEXT: | ||
+ | string txt; | ||
+ | if known(ATTR_text): | ||
+ | txt := ATTR_text; | ||
+ | else: | ||
+ | txt := ATTR__survey; | ||
+ | fi; | ||
+ | | ||
+ | | ||
+ | % PREPARE LABEL: | ||
+ | lab: | ||
+ | pickup PenA; % border thickness | ||
+ | interim bboxmargin: | ||
+ | | ||
+ | % PREPARE BOX and DRAW BOX BACKGROUND: | ||
+ | % q is the box as drawed, but we fill the place first before drawing | ||
+ | q:=((bbox lab) smoothed bordersmooth) aligned al scaled (sc * basescale) rotated theta shifted pos; | ||
+ | if (fillsize <> -1.0): | ||
+ | % draw extending filled box around symbol | ||
+ | if known(MapBackground): | ||
+ | % from therion versions newer than 6.0.3+3551531+dev (23.11.2021) we use page background | ||
+ | thfill ((bbox lab) smoothed bordersmooth) scaled (sc * basescale * fillsize) withcolor MapBackground; | ||
+ | else: | ||
+ | thfill ((bbox lab) smoothed bordersmooth) scaled (sc * basescale * fillsize) withcolor label_fill_color; | ||
+ | fi; | ||
+ | fi; | ||
+ | % the following will draw the actual visible interiour-filling of the box | ||
+ | thfill ((bbox lab) smoothed bordersmooth) scaled (sc * basescale) withcolor label_fill_color; | ||
+ | | ||
+ | % DRAW BOX | ||
+ | draw q; | ||
+ | | ||
+ | % DRAW LABEL TEXT | ||
+ | lab:=lab aligned al; | ||
+ | lab:=lab scaled (sc * basescale); | ||
+ | lab:=lab rotated theta; | ||
+ | lab:=lab shifted pos; | ||
+ | process_label(pos, | ||
+ | endgroup; | ||
+ | enddef; | ||
+ | |||
+ | |||
+ | |||
====Line Symbols==== | ====Line Symbols==== | ||
Line 1058: | Line 1136: | ||
zz3 := postcontrol t of P; | zz3 := postcontrol t of P; | ||
zz4 := precontrol t+1 of P; | zz4 := precontrol t+1 of P; | ||
+ | linecap_prev: | ||
linecap:=0; | linecap:=0; | ||
if (length(zz3-1/ | if (length(zz3-1/ | ||
Line 1079: | Line 1158: | ||
draw zz1--zz2 withcolor background; | draw zz1--zz2 withcolor background; | ||
fi; | fi; | ||
+ | linecap: | ||
endfor; | endfor; | ||
enddef; | enddef; | ||
Line 1617: | Line 1697: | ||
Colors are in order R, G, B --- 0=0 1=255. Color (0.1, 0.2, 0.8) means (25 51 204) in Photoshop - quite dark blue. Light blue could be for example (123 213 255) in Photoshop - it is (123/255, 213/255, 255/255) or (0.48, 0.84 1.0) for Metapost. | Colors are in order R, G, B --- 0=0 1=255. Color (0.1, 0.2, 0.8) means (25 51 204) in Photoshop - quite dark blue. Light blue could be for example (123 213 255) in Photoshop - it is (123/255, 213/255, 255/255) or (0.48, 0.84 1.0) for Metapost. | ||
- | See also [[tips#RGB to Therion Colour Mapping Calculator|this spreadsheet]] to visualise and convert between colour formats. | + | See also |
---- | ---- | ||
Line 2116: | Line 2196: | ||
A: Try this code: | A: Try this code: | ||
- | |||
- | def_transparent_rgb(tr_lgrey, | ||
def a_u_lgrey(expr P) = | def a_u_lgrey(expr P) = | ||
T: | T: | ||
- | thfill P withtransparentcolor tr_lgrey; | + | thfill P withcolor (0.7, 0.7, 0.7) withalpha 0.5; |
enddef; | enddef; | ||
- | There are a few predefined transparent colors, the most interesting of them is tr_bg (current scrap background). Standard opacity value (defined in the layout section) is applied. M. Budaj | ||
---- | ---- | ||
Line 2848: | Line 2925: | ||
) -- ( | ) -- ( | ||
if xpos > 0: 0 else: xsize/2 fi, 0 | if xpos > 0: 0 else: xsize/2 fi, 0 | ||
- | ) withcolor 0.1black+0.5white; | + | ) withcolor 0.2[black, |
draw ( | draw ( | ||
0, if ypos < 0: 0 else: -ysize/2 fi | 0, if ypos < 0: 0 else: -ysize/2 fi | ||
) -- ( | ) -- ( | ||
0, if ypos > 0: 0 else: ysize/2 fi | 0, if ypos > 0: 0 else: ysize/2 fi | ||
- | ) withcolor 0.1black+0.5white; | + | ) withcolor 0.2[black, |
enddef; | enddef; | ||
endcode | endcode | ||
Line 2943: | Line 3020: | ||
thclean Path; | thclean Path; | ||
pickup PenD; | pickup PenD; | ||
- | if known colour_sump_bg: | + | if known colour_sump_bg: |
thfill Path withpattern pattern_sump; | thfill Path withpattern pattern_sump; | ||
%%thdraw Path; %outline, not needed as area drawn is defined by line border anyway | %%thdraw Path; %outline, not needed as area drawn is defined by line border anyway | ||
Line 2958: | Line 3035: | ||
T: | T: | ||
pickup pensquare scaled (1.0*u/10); | pickup pensquare scaled (1.0*u/10); | ||
- | if known colour_rope: | + | if known colour_rope: |
fi; | fi; | ||
pickup PenC; | pickup PenC; |