本文整理汇总了Golang中github.com/ajstarks/svgo.SVG.Line方法的典型用法代码示例。如果您正苦于以下问题:Golang SVG.Line方法的具体用法?Golang SVG.Line怎么用?Golang SVG.Line使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/ajstarks/svgo.SVG
的用法示例。
在下文中一共展示了SVG.Line方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: usage
// usage creates any necessary tags for actually using the relation in the SVG.
func (r *serviceRelation) usage(canvas *svg.SVG) {
l := r.shortestRelation()
canvas.Line(
l.p0.X,
l.p0.Y,
l.p1.X,
l.p1.Y,
fmt.Sprintf(`stroke=%q`, relationColor),
fmt.Sprintf(`stroke-width="%dpx"`, relationLineWidth),
fmt.Sprintf(`stroke-dasharray=%q`, strokeDashArray(l)),
)
mid := l.p0.Add(l.p1).Div(2).Sub(point(healthCircleRadius, healthCircleRadius))
canvas.Use(mid.X, mid.Y, "#healthCircle")
}