Change inner path base height to 79
This commit is contained in:
parent
3db0afd9c7
commit
2cc9405a25
1 changed files with 11 additions and 11 deletions
|
|
@ -47,20 +47,20 @@ func pageOuterPath(box *geo.Box) *svg.SvgPathContext {
|
|||
}
|
||||
|
||||
func pageInnerPath(box *geo.Box) *svg.SvgPathContext {
|
||||
pc := svg.NewSVGPathContext(box.TopLeft, box.Width/66., box.Height/36.5)
|
||||
pc.StartAt(pc.Absolute(64.91803, 36.5))
|
||||
pc := svg.NewSVGPathContext(box.TopLeft, box.Width/66., box.Height/79.)
|
||||
pc.StartAt(pc.Absolute(64.91803, 79.))
|
||||
pc.H(false, 1.08196)
|
||||
pc.C(true, -0.64918, 0, -1.08196, -0.2, -1.08196, -0.5)
|
||||
pc.V(false, 0.5)
|
||||
pc.C(true, 0, -0.3, 0.43278, -0.5, 1.08196, -0.5)
|
||||
pc.C(true, -0.64918, 0, -1.08196, -0.43287, -1.08196, -1.08219)
|
||||
pc.V(false, 1.08219)
|
||||
pc.C(true, 0, -0.64931, 0.43278, -1.08219, 1.08196, -1.08219)
|
||||
pc.H(true, 43.27868)
|
||||
pc.C(true, 0.64918, 0, 1.08196, 0.2, 1.08196, 0.5)
|
||||
pc.V(true, 7.9)
|
||||
pc.C(true, 0, 0.6, 0.86557, 1.1, 2.38032, 1.1)
|
||||
pc.C(true, 0.64918, 0, 1.08196, 0.43287, 1.08196, 1.08219)
|
||||
pc.V(true, 17.09863)
|
||||
pc.C(true, 0, 1.29863, 0.86557, 2.38082, 2.38032, 2.38082)
|
||||
pc.H(false, 64.91803)
|
||||
pc.C(true, .64918, 0, 1.08196, 0.2, 1.08196, 0.5)
|
||||
pc.V(false, 36)
|
||||
pc.C(false, 64.99999, 36.3, 65.56721, 36.5, 64.91803, 36.5)
|
||||
pc.C(true, .64918, 0, 1.08196, 0.43287, 1.08196, 1.08196)
|
||||
pc.V(false, 77.91780)
|
||||
pc.C(false, 64.99999, 78.56712, 65.56721, 79, 64.91803, 79)
|
||||
pc.Z()
|
||||
return pc
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue