igGetWindowPos() private method

private igGetWindowPos ( Vector2 &@out ) : void
@out Vector2
return void
Exemplo n.º 1
0
        public static ImVec2 GetWindowPosition()
        {
            ImVec2 pos;

            ImGuiNative.igGetWindowPos(out pos);
            return(pos);
        }
Exemplo n.º 2
0
        public static Vector2 GetWindowPosition()
        {
            Vector2 pos;

            ImGuiNative.igGetWindowPos(out pos);
            return(pos);
        }
Exemplo n.º 3
0
 public static Vector2 GetWindowPosition()
 {
     System.Numerics.Vector2 pos;
     ImGuiNative.igGetWindowPos(out pos);
     return(new Vector2(pos.X, pos.Y));
 }