// 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)) }
// 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)) }
// 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)) }