1995-1996
Spencer Kimball & Peter Mattis
Paint in the current brush with optional fade out parameter and pull colors from a gradient.
This tool is the standard paintbrush. It draws linearly interpolated lines through the specified stroke coordinates. It operates on the specified drawable in the foreground color with the active brush. The 'fade-out' parameter is measured in pixels and allows the brush stroke to linearly fall off. The pressure is set to the maximum at the beginning of the stroke. As the distance of the stroke nears the fade-out value, the pressure will approach zero. The gradient-length is the distance to spread the gradient over. It is measured in pixels. If the gradient-length is 0, no gradient is used.
unknown
Type | Name | Description |
---|---|---|
PF_DRAWABLE | drawable | The affected drawable |
PF_FLOAT | fade-out | Fade out parameter (fade-out >= 0) |
PF_INT | num-strokes | Number of stroke control points (count each coordinate as 2 points) (num-strokes >= 2) |
unknown | strokes | Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y } |
PF_INT | method | The paint method to use { PAINT-CONSTANT (0), PAINT-INCREMENTAL (1) } |
PF_FLOAT | gradient-length | Length of gradient to draw (gradient-length >= 0) |
None