예제 #1
0
파일: canvas.go 프로젝트: phacops/canvas
// Sets the type of the line join on the current drawing surface.
func (self *Canvas) SetStrokeLineJoin(value uint) {
	C.DrawSetStrokeLineJoin(self.drawing, C.LineJoin(value))
}
예제 #2
0
파일: canvas.go 프로젝트: mishudark/gosexy
// Sets the type of the line join on the current drawing surface.
func (cv Canvas) SetStrokeLineJoin(value uint) {
	C.DrawSetStrokeLineJoin(cv.drawing, C.LineJoin(value))
}
예제 #3
0
// Specifies the shape to be used at the corners of paths (or other vector
// shapes) when they are stroked.
func (dw *DrawingWand) SetStrokeLineJoin(lineJoin LineJoin) {
	C.DrawSetStrokeLineJoin(dw.dw, C.LineJoin(lineJoin))
}