Set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.
(final ImVec2 pos)
| 1093 | * Set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc. |
| 1094 | */ |
| 1095 | public static void setNextWindowPos(final ImVec2 pos) { |
| 1096 | nSetNextWindowPos(pos.x, pos.y); |
| 1097 | } |
| 1098 | |
| 1099 | /** |
| 1100 | * Set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc. |
no test coverage detected