MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/PositionBasedDynamics / nk_rect

Function nk_rect

extern/glfw/deps/nuklear.h:6092–6099  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6090 return nk_null_rect;
6091}
6092NK_API struct nk_rect
6093nk_rect(float x, float y, float w, float h)
6094{
6095 struct nk_rect r;
6096 r.x = x; r.y = y;
6097 r.w = w; r.h = h;
6098 return r;
6099}
6100NK_API struct nk_rect
6101nk_recti(int x, int y, int w, int h)
6102{

Callers 10

nk_rectaFunction · 0.70
nk_rectvFunction · 0.70
nk_foreachFunction · 0.70
nk_begin_titledFunction · 0.70
nk_window_get_boundsFunction · 0.70
nk_widget_boundsFunction · 0.70
nk_chart_push_lineFunction · 0.70
nk_draw_color_pickerFunction · 0.70
nk_combo_beginFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected