You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
352 B
Go
13 lines
352 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
/*
|
|
Package paint provides drawing operations for 2D graphics.
|
|
|
|
The PaintOp operation draws the current brush into a rectangular
|
|
area, taking the current clip path and transformation into account.
|
|
|
|
The current brush is set by either a ColorOp for a constant color, or
|
|
ImageOp for an image.
|
|
*/
|
|
package paint
|