Example #1
0
// Returns the width of the stroke on the current drawing surface.
func (self *Canvas) StrokeWidth() float64 {
	return float64(C.DrawGetStrokeWidth(self.drawing))
}
Example #2
0
// Returns the width of the stroke on the current drawing surface.
func (cv Canvas) StrokeWidth() float64 {
	return float64(C.DrawGetStrokeWidth(cv.drawing))
}
Example #3
0
// Returns the width of the stroke used to draw object outlines.
func (dw *DrawingWand) GetStrokeWidth() float64 {
	return float64(C.DrawGetStrokeWidth(dw.dw))
}