// Sets the type of the line cap on the current drawing surface. func (self *Canvas) SetStrokeLineCap(value uint) { C.DrawSetStrokeLineCap(self.drawing, C.LineCap(value)) }
// Sets the type of the line cap on the current drawing surface. func (cv Canvas) SetStrokeLineCap(value uint) { C.DrawSetStrokeLineCap(cv.drawing, C.LineCap(value)) }
// Specifies the shape to be used at the end of open subpaths when they are // stroked. func (dw *DrawingWand) SetStrokeLineCap(lineCap LineCap) { C.DrawSetStrokeLineCap(dw.dw, C.LineCap(lineCap)) }