draw2d/draw2dkit/droid.go

74 lines
1.7 KiB
Go
Raw Normal View History

2015-04-29 15:32:28 +00:00
package draw2dkit
import (
"github.com/llgcode/draw2d"
"math"
)
2015-04-29 15:52:43 +00:00
// Droid draws a droid at specified position
2015-04-30 14:27:23 +00:00
func Droid(drawer draw2d.Drawer, x, y float64, fillStyle draw2d.FillStyle, strokeStyle draw2d.StrokeStyle) {
strokeStyle.LineCap = draw2d.RoundCap
strokeStyle.Width = 5
path := &draw2d.Path{}
2015-04-29 15:32:28 +00:00
// head
2015-04-30 14:27:23 +00:00
path.ArcTo(x+80, y+70, 50, 50, 180*(math.Pi/180), 360*(math.Pi/180))
drawer.Fill(path, fillStyle)
drawer.Stroke(path, strokeStyle)
path.Clear()
path.MoveTo(x+60, y+25)
path.LineTo(x+50, y+10)
path.MoveTo(x+100, y+25)
path.LineTo(x+110, y+10)
drawer.Stroke(path, strokeStyle)
2015-04-29 15:32:28 +00:00
// left eye
2015-04-30 14:27:23 +00:00
path.Clear()
Circle(path, x+60, y+45, 5)
drawer.Fill(path, fillStyle)
drawer.Stroke(path, strokeStyle)
2015-04-29 15:32:28 +00:00
// right eye
2015-04-30 14:27:23 +00:00
path.Clear()
Circle(path, x+100, y+45, 5)
drawer.Fill(path, fillStyle)
drawer.Stroke(path, strokeStyle)
2015-04-29 15:32:28 +00:00
// body
2015-04-30 14:27:23 +00:00
path.Clear()
RoundedRectangle(path, x+30, y+75, x+30+100, y+75+90, 10, 10)
drawer.Fill(path, fillStyle)
drawer.Stroke(path, strokeStyle)
path.Clear()
Rectangle(path, x+30, y+75, x+30+100, y+75+80)
drawer.Fill(path, fillStyle)
drawer.Stroke(path, strokeStyle)
2015-04-29 15:32:28 +00:00
// left arm
2015-04-30 14:27:23 +00:00
path.Clear()
RoundedRectangle(path, x+5, y+80, x+5+20, y+80+70, 10, 10)
drawer.Fill(path, fillStyle)
drawer.Stroke(path, strokeStyle)
2015-04-29 15:32:28 +00:00
// right arm
2015-04-30 14:27:23 +00:00
path.Clear()
RoundedRectangle(path, x+135, y+80, x+135+20, y+80+70, 10, 10)
drawer.Fill(path, fillStyle)
drawer.Stroke(path, strokeStyle)
2015-04-29 15:32:28 +00:00
// left leg
2015-04-30 14:27:23 +00:00
path.Clear()
RoundedRectangle(path, x+50, y+150, x+50+20, y+150+50, 10, 10)
drawer.Fill(path, fillStyle)
drawer.Stroke(path, strokeStyle)
2015-04-29 15:32:28 +00:00
// right leg
2015-04-30 14:27:23 +00:00
path.Clear()
RoundedRectangle(path, x+90, y+150, x+90+20, y+150+50, 10, 10)
drawer.Fill(path, fillStyle)
drawer.Stroke(path, strokeStyle)
2015-04-29 15:32:28 +00:00
}