// Returns the type of the line join on the current drawing surface. func (self *Canvas) StrokeLineJoin() uint { return uint(C.DrawGetStrokeLineJoin(self.drawing)) }
// Returns the type of the line join on the current drawing surface. func (cv Canvas) StrokeLineJoin() uint { return uint(C.DrawGetStrokeLineJoin(cv.drawing)) }
// Returns the shape to be used at the corners of paths (or other vector // shapes) when they are stroked. Values of LineJoin are UndefinedJoin, // MiterJoin, RoundJoin, and BevelJoin. func (dw *DrawingWand) GetStrokeLineJoin() LineJoin { return LineJoin(C.DrawGetStrokeLineJoin(dw.dw)) }