Panda3D
|
This class provides a number of convenient methods for painting drawings directly into a PNMImage. More...
Public Member Functions | |
__init__ (const PNMPainter) | |
__init__ (PNMImage image, int xo, int yo) | |
The constructor stores a pointer to the PNMImage you pass it, but it does not take ownership of the object; you are responsible for ensuring that the PNMImage does not destruct during the lifetime of the PNMPainter object. More... | |
drawLine (float xa, float ya, float xb, float yb) | |
Draws an antialiased line on the PNMImage, using the current pen. More... | |
drawPoint (float x, float y) | |
Draws an antialiased point on the PNMImage, using the current pen. More... | |
drawRectangle (float xa, float ya, float xb, float yb) | |
Draws a filled rectangule on the PNMImage, using the current pen for the outline, and the current fill brush for the interior. More... | |
PNMBrush | getFill () |
Returns the current fill brush. More... | |
PNMBrush | getPen () |
Returns the current pen. More... | |
setFill (PNMBrush fill) | |
Specifies a PNMBrush that will be used for filling in the interiors of objects. More... | |
setPen (PNMBrush pen) | |
Specifies a PNMBrush that will be used for drawing lines and edges. More... | |
Public Attributes | |
PNMBrush | fill |
Returns the current fill brush. More... | |
PNMBrush | pen |
Returns the current pen. More... | |
This class provides a number of convenient methods for painting drawings directly into a PNMImage.
It stores a pointer to the PNMImage you pass it, but it does not take ownership of the object; you are responsible for ensuring that the PNMImage does not destruct during the lifetime of the PNMPainter object.
__init__ | ( | const | PNMPainter | ) |
__init__ | ( | PNMImage | image, |
int | xo, | ||
int | yo | ||
) |
The constructor stores a pointer to the PNMImage you pass it, but it does not take ownership of the object; you are responsible for ensuring that the PNMImage does not destruct during the lifetime of the PNMPainter object.
The xo, yo coordinates specify an optional offset for fill coordinates. If you are painting with a pattern fill, these specify the virtual coordinates of the upper-left corner of the image, which can allow you to adjust the pattern to line up with nested images, if necessary.
drawLine | ( | float | xa, |
float | ya, | ||
float | xb, | ||
float | yb | ||
) |
Draws an antialiased line on the PNMImage, using the current pen.
drawPoint | ( | float | x, |
float | y | ||
) |
Draws an antialiased point on the PNMImage, using the current pen.
drawRectangle | ( | float | xa, |
float | ya, | ||
float | xb, | ||
float | yb | ||
) |
Draws a filled rectangule on the PNMImage, using the current pen for the outline, and the current fill brush for the interior.
The two coordinates specify any two diagonally opposite corners.
PNMBrush getFill | ( | ) |
Returns the current fill brush.
See set_fill().
PNMBrush getPen | ( | ) |
Returns the current pen.
See set_pen().
setFill | ( | PNMBrush | fill | ) |
Specifies a PNMBrush that will be used for filling in the interiors of objects.
If the brush is a bitmap brush, its image will be tiled throughout the space.
Unlike the PNMImage passed to the constructor, the PNMPainter will take ownership of the fill brush. It is not necessary to keep a separate pointer to it.
setPen | ( | PNMBrush | pen | ) |
Specifies a PNMBrush that will be used for drawing lines and edges.
If the brush is a bitmap brush, its image will be smeared pixelwise along the line.
Unlike the PNMImage passed to the constructor, the PNMPainter will take ownership of the pen. It is not necessary to keep a separate pointer to it.
PNMBrush fill |
Returns the current fill brush.
See set_fill().
PNMBrush pen |
Returns the current pen.
See set_pen().