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