我正在尝试这个图表示例:
funs = map (flip (^)) [2..6]
visualize f = stroke' (with & vertexNames .~ [[0 .. 6 :: Int]] )
(regPoly 7 1)
# lw none
# showLabels
# fontSize (Local 0.6)
<> star (StarFun f) (regPoly 7 1)
# stroke # lw thick # lc red
example = center . hcat' (with & sep .~ 0.5) $ map visualize funs
结果如下:
一切看起来都如预期的那样,一些数字(或更准确地说,这些数字的中心)位于图像边缘附近,因此最终它们看起来像是被切断了。
有没有办法解决这个问题?