コード例 #1
0
ファイル: canvas.go プロジェクト: phacops/canvas
// Returns the width of the stroke on the current drawing surface.
func (self *Canvas) StrokeWidth() float64 {
	return float64(C.DrawGetStrokeWidth(self.drawing))
}
コード例 #2
0
ファイル: canvas.go プロジェクト: mishudark/gosexy
// Returns the width of the stroke on the current drawing surface.
func (cv Canvas) StrokeWidth() float64 {
	return float64(C.DrawGetStrokeWidth(cv.drawing))
}
コード例 #3
0
ファイル: drawing_wand.go プロジェクト: qwo/abelana-gcp
// Returns the width of the stroke used to draw object outlines.
func (dw *DrawingWand) GetStrokeWidth() float64 {
	return float64(C.DrawGetStrokeWidth(dw.dw))
}