Example #1
0
// Returns the type of the line cap on the current drawing surface.
func (self *Canvas) StrokeLineCap() uint {
	return uint(C.DrawGetStrokeLineCap(self.drawing))
}
Example #2
0
// Returns the type of the line cap on the current drawing surface.
func (cv Canvas) StrokeLineCap() uint {
	return uint(C.DrawGetStrokeLineCap(cv.drawing))
}
Example #3
0
// 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))
}