#include <stdio.h>
Go to the source code of this file.
Data Structures | |
struct | carmen_ps_doc_t |
Defines | |
#define | CARMEN_GENERATE_PS 0 |
#define | CARMEN_GENERATE_EPS 1 |
#define | CARMEN_PS_BUTTCAP 0 |
#define | CARMEN_PS_ROUNDCAP 1 |
#define | CARMEN_PS_PROJECTINGCAP 2 |
#define | CARMEN_PS_MITERJOIN 0 |
#define | CARMEN_PS_ROUNDJOIN 1 |
#define | CARMEN_PS_BEVELJOIN 2 |
Typedefs | |
typedef * | carmen_ps_doc_p |
Functions | |
carmen_ps_doc_p | carmen_ps_open (char *filename, float width, float height, int eps) |
void | carmen_ps_close (carmen_ps_doc_p doc) |
void | carmen_ps_comment (carmen_ps_doc_p doc, char *comment) |
void | carmen_ps_next_page (carmen_ps_doc_p doc) |
void | carmen_ps_set_color (carmen_ps_doc_p doc, unsigned char r, unsigned char g, unsigned char b) |
void | carmen_ps_set_gray (carmen_ps_doc_p doc, unsigned char level) |
void | carmen_ps_set_linewidth (carmen_ps_doc_p doc, float w) |
void | carmen_ps_set_jointype (carmen_ps_doc_p doc, int join) |
void | carmen_ps_set_captype (carmen_ps_doc_p doc, int cap) |
void | carmen_ps_set_dash (carmen_ps_doc_p doc, int length) |
void | carmen_ps_set_font (carmen_ps_doc_p doc, char *fontname, int size) |
void | carmen_ps_draw_point (carmen_ps_doc_p doc, float x_1, float y_1) |
void | carmen_ps_draw_points (carmen_ps_doc_p doc, float *x_1, float *y_1, int n) |
void | carmen_ps_draw_line (carmen_ps_doc_p doc, float x_1, float y_1, float x_2, float y_2) |
void | carmen_ps_draw_x (carmen_ps_doc_p doc, float x_1, float y_1, float r) |
void | carmen_ps_draw_poly (carmen_ps_doc_p doc, int filled, float *x_1, float *y_1, int n, int closed) |
void | carmen_ps_draw_circle (carmen_ps_doc_p doc, int filled, float x_1, float y_1, float r) |
void | carmen_ps_draw_ellipse (carmen_ps_doc_p doc, int filled, float x_1, float y_1, float x_var, float xy_cov, float y_var, float k) |
void | carmen_ps_draw_gaussian (carmen_ps_doc_p doc, float x, float y, float x_var, float xy_cov, float y_var, float k) |
void | carmen_ps_draw_rectangle (carmen_ps_doc_p doc, int filled, float x_1, float y_1, float x_2, float y_2) |
void | carmen_ps_draw_arc (carmen_ps_doc_p doc, float x_1, float y_1, float r, float start_angle, float delta) |
void | carmen_ps_draw_wedge (carmen_ps_doc_p doc, int filled, float x_1, float y_1, float r, float start_angle, float delta) |
void | carmen_ps_draw_text (carmen_ps_doc_p doc, char *str, float x_1, float y_1) |
void | carmen_ps_draw_text_landscape (carmen_ps_doc_p doc, char *str, float x_1, float y_1) |
void | carmen_ps_draw_image (carmen_ps_doc_p doc, float dest_x, float dest_y, float dest_width, float dest_height, char *src_image, int src_width, int src_height) |
void | carmen_ps_draw_transformed_image (carmen_ps_doc_p doc, char *srt_image, int src_width, int src_height, float dest_x, float dest_y, float dest_theta, float dest_scale) |
Library for writing postscript files.
Definition in file pswrap.h.