Lines Matching defs:a_max
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)
8985 cmd->a[1] = a_max;
8990 float a_min, float a_max, struct nk_color c)
9002 cmd->a[1] = a_max;
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;
10251 float a_max;
10254 a_max = NK_PI * 2.0f * ((float)segs - 1.0f) / (float)segs;
10255 nk_draw_list_path_arc_to(list, center, radius, 0.0f, a_max, segs);
10262 float a_max;
10265 a_max = NK_PI * 2.0f * ((float)segs - 1.0f) / (float)segs;
10266 nk_draw_list_path_arc_to(list, center, radius, 0.0f, a_max, segs);