Lines Matching refs:segs
4781 NK_API void nk_draw_list_stroke_circle(struct nk_draw_list*, struct nk_vec2 center, float radius, struct nk_color, unsigned int segs, float thickness);
4789 NK_API void nk_draw_list_fill_circle(struct nk_draw_list*, struct nk_vec2 center, float radius, struct nk_color col, unsigned int segs);
10249 float radius, struct nk_color col, unsigned int segs)
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);
10260 float radius, struct nk_color col, unsigned int segs, float thickness)
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);