Top |
Functions
#define | GO_ARROW_TYPE |
char const * | go_line_dash_as_label () |
char const * | go_line_dash_as_str () |
GOLineDashType | go_line_dash_from_str () |
double | go_line_dash_get_length () |
GOLineDashSequence * | go_line_dash_get_sequence () |
void | go_line_dash_sequence_free () |
char const * | go_line_interpolation_as_label () |
char const * | go_line_interpolation_as_str () |
gboolean | go_line_interpolation_auto_skip () |
GOLineInterpolation | go_line_interpolation_from_str () |
gboolean | go_line_interpolation_supports_radial () |
Functions
go_line_dash_as_label ()
char const *
go_line_dash_as_label (GOLineDashType type
);
Returns
a pointer to the user readable name of the dash type,
or the name of GO_LINE_NONE
if type is invalid. The returned
string should not be freed.
go_line_dash_get_sequence ()
GOLineDashSequence * go_line_dash_get_sequence (GOLineDashType type
,double scale
);
Returns
a struct containing the dash sequence corresponding to type
,
or NULL
if type is invalid or equal to GO_LINE_NONE
.
The lengths are scaled according to scale
.
go_line_dash_sequence_free ()
void
go_line_dash_sequence_free (GOLineDashSequence *sequence
);
Frees the dash sequence struct.
go_line_interpolation_as_label ()
char const *
go_line_interpolation_as_label (GOLineInterpolation type
);
Returns
a pointer to the label of type
, or the name of
GO_LINE_INTERPOLATION_LINEAR
if type is invalid.
The returned string should not be freed.
go_line_interpolation_as_str ()
char const *
go_line_interpolation_as_str (GOLineInterpolation type
);
go_line_interpolation_auto_skip ()
gboolean
go_line_interpolation_auto_skip (GOLineInterpolation type
);
go_line_interpolation_from_str ()
GOLineInterpolation
go_line_interpolation_from_str (char const *name
);
go_line_interpolation_supports_radial ()
gboolean
go_line_interpolation_supports_radial (GOLineInterpolation type
);