// Returns the type of the line cap on the current drawing surface. func (self *Canvas) StrokeLineCap() uint { return uint(C.DrawGetStrokeLineCap(self.drawing)) }
// Returns the type of the line cap on the current drawing surface. func (cv Canvas) StrokeLineCap() uint { return uint(C.DrawGetStrokeLineCap(cv.drawing)) }
// Returns the shape to be used at the end of open subpaths when they are // stroked. Values of LineCap are UndefinedCap, ButtCap, RoundCap, and // SquareCap. func (dw *DrawingWand) GetStrokeLineCap() LineCap { return LineCap(C.DrawGetStrokeLineCap(dw.dw)) }