Lines Matching defs:center
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);
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);
10015 nk_draw_list_path_arc_to_fast(struct nk_draw_list *list, struct nk_vec2 center,
10024 const float x = center.x + c.x * radius;
10025 const float y = center.y + c.y * radius;
10031 nk_draw_list_path_arc_to(struct nk_draw_list *list, struct nk_vec2 center,
10065 const float x = center.x + cx;
10066 const float y = center.y + cy;
10248 nk_draw_list_fill_circle(struct nk_draw_list *list, struct nk_vec2 center,
10255 nk_draw_list_path_arc_to(list, center, radius, 0.0f, a_max, segs);
10259 nk_draw_list_stroke_circle(struct nk_draw_list *list, struct nk_vec2 center,
10266 nk_draw_list_path_arc_to(list, center, radius, 0.0f, a_max, segs);
11884 /* find center of pixel for this scanline */