本文整理匯總了Golang中github.com/gotk3/gotk3/cairo.Context.Scale方法的典型用法代碼示例。如果您正苦於以下問題:Golang Context.Scale方法的具體用法?Golang Context.Scale怎麽用?Golang Context.Scale使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/gotk3/gotk3/cairo.Context
的用法示例。
在下文中一共展示了Context.Scale方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: DrawCallback
func (v *signalGraphView) DrawCallback(area DrawArea, context *cairo.Context) {
context.Scale(v.parent.Scale(), v.parent.Scale())
x1, y1, x2, y2 := context.ClipExtents()
r := image.Rect(int(x1), int(y1), int(x2), int(y2))
v.drawNodes(context, r)
v.drawConnections(context, r)
}
示例2: DrawCallback
func (v *platformView) DrawCallback(area DrawArea, context *cairo.Context) {
context.Scale(v.parent.Scale(), v.parent.Scale())
x1, y1, x2, y2 := context.ClipExtents()
r := image.Rect(int(x1), int(y1), int(x2), int(y2))
v.drawArch(context, r)
v.drawChannels(context, r)
}
示例3: DrawCallback
func (v *mappingView) DrawCallback(area DrawArea, context *cairo.Context) {
context.Scale(v.parent.Scale(), v.parent.Scale())
x1, y1, x2, y2 := context.ClipExtents()
r := image.Rect(int(x1), int(y1), int(x2), int(y2))
if r.Overlaps(v.unmapped.BBox()) {
v.unmapped.Draw(context)
}
v.drawArch(context, r)
v.drawNodes(context, r)
v.drawChannels(context, r)
v.drawConnections(context, r)
}