GRASS GIS 8 Programmer's Manual
8.2.0(2022)-exported
|
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
#include <grass/gis.h>
#include <grass/symbol.h>
#include <grass/glocale.h>
Go to the source code of this file.
Macros | |
#define | OBJ_NONE 0 |
#define | OBJ_STRING 1 |
#define | OBJ_POLYGON 2 |
#define | OBJ_RING 3 |
Functions | |
void | get_key_data (char *buf) |
SYMBOL * | new_symbol (void) |
void | add_part (SYMBOL *s, SYMBPART *p) |
SYMBPART * | new_part (int type) |
void | add_chain (SYMBPART *p, SYMBCHAIN *s) |
SYMBCHAIN * | new_chain (void) |
void | add_element (SYMBCHAIN *s, SYMBEL *e) |
SYMBEL * | new_line (void) |
void | add_point (SYMBEL *el, double x, double y) |
SYMBEL * | new_arc (double x, double y, double r, double a1, double a2, int c) |
void | read_coor (FILE *fp, SYMBEL *e) |
SYMBOL * | err (FILE *fp, SYMBOL *s, char *msg) |
SYMBOL * | S_read (const char *sname) |
#define OBJ_NONE 0 |
Definition at line 27 of file symbol/read.c.
#define OBJ_POLYGON 2 |
Definition at line 29 of file symbol/read.c.
#define OBJ_RING 3 |
Definition at line 30 of file symbol/read.c.
#define OBJ_STRING 1 |
Definition at line 28 of file symbol/read.c.
void add_chain | ( | SYMBPART * | p, |
SYMBCHAIN * | s | ||
) |
Definition at line 99 of file symbol/read.c.
void add_element | ( | SYMBCHAIN * | s, |
SYMBEL * | e | ||
) |
Definition at line 130 of file symbol/read.c.
void add_part | ( | SYMBOL * | s, |
SYMBPART * | p | ||
) |
Definition at line 71 of file symbol/read.c.
void add_point | ( | SYMBEL * | el, |
double | x, | ||
double | y | ||
) |
Definition at line 156 of file symbol/read.c.
References x.
SYMBOL* err | ( | FILE * | fp, |
SYMBOL * | s, | ||
char * | msg | ||
) |
Definition at line 220 of file symbol/read.c.
Referenced by G_fwrite_key_value(), G_math_solver_gs(), G_math_solver_jacobi(), G_math_solver_sparse_gs(), G_math_solver_sparse_jacobi(), G_parser(), G_read_compressed(), G_write_projsrid(), G_write_projwkt(), seg_pageout(), and Segment_init().
void get_key_data | ( | char * | buf | ) |
SYMBEL* new_arc | ( | double | x, |
double | y, | ||
double | r, | ||
double | a1, | ||
double | a2, | ||
int | c | ||
) |
Definition at line 173 of file symbol/read.c.
SYMBCHAIN* new_chain | ( | void | ) |
Definition at line 114 of file symbol/read.c.
References NULL.
SYMBEL* new_line | ( | void | ) |
Definition at line 142 of file symbol/read.c.
References NULL.
SYMBPART* new_part | ( | int | type | ) |
Definition at line 84 of file symbol/read.c.
References NULL.
SYMBOL* new_symbol | ( | void | ) |
Definition at line 58 of file symbol/read.c.
References NULL.
void read_coor | ( | FILE * | fp, |
SYMBEL * | e | ||
) |
Definition at line 189 of file symbol/read.c.
References G_chop(), G_debug(), G_getl2(), get_key_data(), and x.
SYMBOL* S_read | ( | const char * | sname | ) |
Definition at line 235 of file symbol/read.c.