當前位置: 首頁>>代碼示例>>Golang>>正文


Golang gg.Context類代碼示例

本文整理匯總了Golang中github.com/fogleman/gg.Context的典型用法代碼示例。如果您正苦於以下問題:Golang Context類的具體用法?Golang Context怎麽用?Golang Context使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Context類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: drawCurve

func drawCurve(dc *gg.Context) {
	dc.SetRGBA(0, 0, 0, 0.1)
	dc.FillPreserve()
	dc.SetRGB(0, 0, 0)
	dc.SetLineWidth(12)
	dc.Stroke()
}
開發者ID:yuer1727,項目名稱:gospace,代碼行數:7,代碼來源:bezier.go

示例2: randomCubic

func randomCubic(dc *gg.Context) {
	x0, y0 := point()
	x1, y1 := point()
	x2, y2 := point()
	x3, y3 := point()
	dc.MoveTo(x0, y0)
	dc.CubicTo(x1, y1, x2, y2, x3, y3)
	drawCurve(dc)
	dc.MoveTo(x0, y0)
	dc.LineTo(x1, y1)
	dc.LineTo(x2, y2)
	dc.LineTo(x3, y3)
	drawPoints(dc)
}
開發者ID:yuer1727,項目名稱:gospace,代碼行數:14,代碼來源:test_bezier.go

示例3: randomQuadratic

func randomQuadratic(dc *gg.Context) {
	x0, y0 := point()
	x1, y1 := point()
	x2, y2 := point()
	dc.MoveTo(x0, y0)
	dc.QuadraticTo(x1, y1, x2, y2)
	drawCurve(dc)
	dc.MoveTo(x0, y0)
	dc.LineTo(x1, y1)
	//dc.LineTo(x2, y2)
	drawPoints(dc)
}
開發者ID:yuer1727,項目名稱:gospace,代碼行數:12,代碼來源:test_bezier.go

示例4: GraphUpdater

func GraphUpdater(dc *gg.Context) {

	ticker := time.NewTicker(1 * time.Second)
	defer ticker.Stop()
	for {
		select {
		case job := <-Queue:
			intVal, _ := strconv.Atoi(job)
			dc.DrawCircle(float64(TimerVal), float64(1000-(intVal)), 5)

			dc.Fill()
			dc.SavePNG("out.png")
			if TimerVal >= 1000 {
				TimerVal = 0
				dc.Clear()
			}
		case <-ticker.C:
			TimerVal = TimerVal + 1
		}
	}
}
開發者ID:jahantech,項目名稱:Gograph,代碼行數:21,代碼來源:main.go

示例5: drawStartPoint

func drawStartPoint(dc *gg.Context) {
	dc.SetRGBA(0, 1, 0, 1)
	dc.SetLineWidth(20)
	dc.Stroke()
}
開發者ID:yuer1727,項目名稱:gospace,代碼行數:5,代碼來源:test_bezier.go

示例6: drawPoints

func drawPoints(dc *gg.Context) {
	dc.SetRGBA(1, 0, 0, 1)
	dc.SetLineWidth(2)
	dc.Stroke()
}
開發者ID:yuer1727,項目名稱:gospace,代碼行數:5,代碼來源:test_bezier.go

示例7: draw

func (m *Marker) draw(gc *gg.Context, trans *transformer) {
	gc.ClearPath()
	gc.SetLineJoin(gg.LineJoinRound)
	gc.SetLineWidth(1.0)

	radius := 0.5 * m.Size
	x, y := trans.ll2p(m.Position)
	gc.DrawArc(x, y-m.Size, radius, (90.0+60.0)*math.Pi/180.0, (360.0+90.0-60.0)*math.Pi/180.0)
	gc.LineTo(x, y)
	gc.ClosePath()
	gc.SetColor(m.Color)
	gc.FillPreserve()
	gc.SetRGB(0, 0, 0)
	gc.Stroke()

	if m.Label != "" {
		if Luminance(m.Color) >= 0.5 {
			gc.SetColor(color.RGBA{0x00, 0x00, 0x00, 0xff})
		} else {
			gc.SetColor(color.RGBA{0xff, 0xff, 0xff, 0xff})
		}
		gc.DrawStringAnchored(m.Label, x, y-m.Size, 0.5, 0.5)
	}
}
開發者ID:flopp,項目名稱:go-staticmaps,代碼行數:24,代碼來源:marker.go

示例8: draw

func (p *Path) draw(gc *gg.Context, trans *transformer) {
	if len(p.Positions) <= 1 {
		return
	}

	gc.ClearPath()
	gc.SetLineWidth(p.Weight)
	gc.SetLineCap(gg.LineCapRound)
	gc.SetLineJoin(gg.LineJoinRound)
	for _, ll := range p.Positions {
		gc.LineTo(trans.ll2p(ll))
	}
	gc.SetColor(p.Color)
	gc.Stroke()
}
開發者ID:flopp,項目名稱:go-staticmaps,代碼行數:15,代碼來源:path.go


注:本文中的github.com/fogleman/gg.Context類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。