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
use bail;
use BytesStart;
/// https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.shapeguide?view=openxml-3.0.1
///
/// This element specifies the precense of a shape guide that is used to govern the geometry of the specified shape.
/// A shape guide consists of a formula and a name that the result of the formula is assigned to.
/// Recognized formulas are listed with the fmla attribute documentation for this element.
///
/// Example:
/// ```
/// <a:custGeom>
/// <a:avLst/>
/// <a:gdLst>
/// <a:gd name="myGuide" fmla="*/ h 2 3"/>
/// </a:gdLst>
/// <a:ahLst/>
/// <a:cxnLst/>
/// <a:rect l="0" t="0" r="0" b="0"/>
/// <a:pathLst>
/// <a:path w="1705233" h="679622">
/// <a:moveTo>
/// <a:pt x="0" y="myGuide"/>
/// </a:moveTo>
/// <a:lnTo>
/// <a:pt x="1705233" y="myGuide"/>
/// </a:lnTo>
/// <a:lnTo>
/// <a:pt x="852616" y="0"/>
/// </a:lnTo>
/// <a:close/>
/// </a:path>
/// </a:pathLst>
/// </a:custGeom>
/// ```
///
/// gd (Shpae guide)