Function
Gimpairbrush_default
Declaration [src]
gboolean
gimp_airbrush_default (
GimpDrawable* drawable,
gsize num_strokes,
const gdouble* strokes
)
Description [src]
Paint in the current brush with varying pressure. Paint application is time-dependent.
This tool simulates the use of an airbrush. It is similar to
gimp_airbrush()
except that the pressure is derived from the
airbrush tools options box. It the option has not been set the
default for the option will be used.
Parameters
drawable
-
Type:
GimpDrawable
The affected drawable.
The data is owned by the caller of the function. num_strokes
-
Type:
gsize
Number of stroke control points (count each coordinate as 2 points).
strokes
-
Type: An array of
double
Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, …, sn.x, sn.y }.
The length of the array is specified in the num_strokes
argument.The data is owned by the caller of the function.