Represents a collection of vector graphics.
|
| kGraphicFont | kGraphic_AddFont (kGraphic graphic, kFontFamily family, kFontStyle style, k32f height) |
| | Adds a font that can be used for drawing operations. More...
|
| |
| kGraphicMarker | kGraphic_AddMarker (kGraphic graphic, kMarkerShape shape, k32f size) |
| | Adds a marker shape that can be used for drawing operations. More...
|
| |
| kGraphicPen | kGraphic_AddPen (kGraphic graphic, kColor color, k32f width) |
| | Adds a pen that can be used for drawing operations. More...
|
| |
| kGraphicBrush | kGraphic_AddSolidBrush (kGraphic graphic, kColor color) |
| | Adds a solid brush that can be used for drawing operations. More...
|
| |
| kStatus | kGraphic_Construct (kGraphic *graphic, kObject allocator) |
| | Constructs a graphic object. More...
|
| |
| kRect32f * | kGraphic_DrawEllipses32f (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, const kRect32f *rects, kSize count) |
| | Draws a set of ellipses. More...
|
| |
| kRect32s * | kGraphic_DrawEllipses32s (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, const kRect32s *rects, kSize count) |
| | Draws a set of ellipses. More...
|
| |
| void * | kGraphic_DrawImage32f (kGraphic graphic, kImage image, kRect32f dest) |
| | Draws an image. More...
|
| |
| void * | kGraphic_DrawImage32s (kGraphic graphic, kImage image, kRect32s dest) |
| | Draws an image. More...
|
| |
| kPoint32f * | kGraphic_DrawPoints32f (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, kGraphicMarker marker, const kPoint32f *points, kSize count) |
| | Draws a set of points using a pre-define shape. More...
|
| |
| kPoint32s * | kGraphic_DrawPoints32s (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, kGraphicMarker marker, const kPoint32s *points, kSize count) |
| | Draws a set of points using a pre-define shape. More...
|
| |
| kPoint32f * | kGraphic_DrawPolygon32f (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, const kPoint32f *points, kSize count) |
| | Draws a polygon. More...
|
| |
| kPoint32s * | kGraphic_DrawPolygon32s (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, const kPoint32s *points, kSize count) |
| | Draws a polygon. More...
|
| |
| kPoint32f * | kGraphic_DrawPolyline32f (kGraphic graphic, kGraphicPen pen, const kPoint32f *points, kSize count) |
| | Draws connected line segments. More...
|
| |
| kPoint32s * | kGraphic_DrawPolyline32s (kGraphic graphic, kGraphicPen pen, const kPoint32s *points, kSize count) |
| | Draws connected line segments. More...
|
| |
| kRect32f * | kGraphic_DrawRects32f (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, const kRect32f *rects, kSize count) |
| | Draws a set of rectangles. More...
|
| |
| kRect32s * | kGraphic_DrawRects32s (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, const kRect32s *rects, kSize count) |
| | Draws a set of rectangles. More...
|
| |
| kRotatedRect32f * | kGraphic_DrawRotatedRects32f (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, const kRotatedRect32f *rects, kSize count) |
| | Draws a set of rotated rectangles. More...
|
| |
| kRotatedRect32s * | kGraphic_DrawRotatedRects32s (kGraphic graphic, kGraphicPen pen, kGraphicBrush brush, const kRotatedRect32s *rects, kSize count) |
| | Draws a set of rotated rectangles. More...
|
| |
| kChar * | kGraphic_DrawString32f (kGraphic graphic, kGraphicFont font, kGraphicBrush brush, kPoint32f location, k32f angle, kAlignment alignment, const kChar *text) |
| | Draws a string. More...
|
| |
| kChar * | kGraphic_DrawString32s (kGraphic graphic, kGraphicFont font, kGraphicBrush brush, kPoint32s location, k32s angle, kAlignment alignment, const kChar *text) |
| | Draws a string. More...
|
| |