Lines Matching defs:a_min
4576 NK_API void nk_stroke_arc(struct nk_command_buffer*, float cx, float cy, float radius, float a_min, float a_max, float line_thickness, struct nk_color);
4585 NK_API void nk_fill_arc(struct nk_command_buffer*, float cx, float cy, float radius, float a_min, float a_max, struct nk_color);
4770 NK_API void nk_draw_list_path_arc_to_fast(struct nk_draw_list*, struct nk_vec2 center, float radius, int a_min, int a_max);
4771 NK_API void nk_draw_list_path_arc_to(struct nk_draw_list*, struct nk_vec2 center, float radius, float a_min, float a_max, unsigned int segments);
8973 float a_min, float a_max, float line_thickness, struct nk_color c)
8984 cmd->a[0] = a_min;
8990 float a_min, float a_max, struct nk_color c)
9001 cmd->a[0] = a_min;
10016 float radius, int a_min, int a_max)
10021 if (a_min <= a_max) {
10022 for (a = a_min; a <= a_max; a++) {
10032 float radius, float a_min, float a_max, unsigned int segments)
10057 {const float d_angle = (a_max - a_min) / (float)segments;
10061 float cx = (float)NK_COS(a_min) * radius;
10062 float cy = (float)NK_SIN(a_min) * radius;