#! /usr/bin/python3
import sys, re
import html_gen as h
from process_funcs import bash
import html_report_funcs as hr
last_edit = "Last edited on 2025-11-22 02:47:02 by stolfi"
def main():
global last_edit
title = "Page f1v - \"Belladonna\"
Root of plant"
st = h.new_doc(title, "#eeffdd")
hr.basic_figure(st, "annotated.png",
"""The plant on f1v (root above) is
clearly the "same drawing" as the
f102r1[3,1],
the bottom right plant of f102r1 (Pharma);
except that the latter has no flower
or fruit, and the two differ in
several detals.
The root of f1v shows a few strokes
that seem to be original (Rt0)
traces, the general restoration
round (Rt1), and later retraces Rt2
and Rt3. The distinction between
Rt1, Rt2, and Rt3 is often unclear
because the latter rounds have
suffered fading by wear and stains.
That said, generally the labels are
green for Rt0, cyan for Rt1, purple
for Rt2, and rose for Rt3.
(A1,A2) Rootlet tips in original
(Rt0) traces. nearly invisible now.
(B1,B2) Possibly Rt0 hatching
strokes, nearly invisible.
(H1,H2,H3) Restored (Rt1) parts of
rootlets. (I1,I2) Rt1 outlines.
(J1,J2,J3) Lobe ends rendered as
flat by Rt1. (K) Hatching strokes by
Rt1.
(N) Hatching strokes by Rt2.
(O1,O2,O3) Hatching strokes by Rt1
or Rt2 partly retraced by Rt2 or
Rt3.
(Q1,Q2) Root outline retraced by
Rt3. (R1,R2,R3) Parts of rootlets
retraced by Rt3. (S) Sharp
claw-shaped Rt3 rootlet.
(X1,X2,X3,X4) Original and retraced
outlets aligned with fuzzy grey
streaks on f0v; see this
subpage for more details. (Y)
Gray streak that extends past folio
edge onto f0v.""")
# h.section(st, 2, "Discussion")
# h.parags(st, """""")
h.output_doc(st, sys.stdout, 0, last_edit)
return 0
# ----------------------------------------------------------------------
main()