igGetWindowPos() private method

private igGetWindowPos ( Vector2 &@out ) : void
@out Vector2
return void
示例#1
0
        public static ImVec2 GetWindowPosition()
        {
            ImVec2 pos;

            ImGuiNative.igGetWindowPos(out pos);
            return(pos);
        }
示例#2
0
        public static Vector2 GetWindowPosition()
        {
            Vector2 pos;

            ImGuiNative.igGetWindowPos(out pos);
            return(pos);
        }
示例#3
0
 public static Vector2 GetWindowPosition()
 {
     System.Numerics.Vector2 pos;
     ImGuiNative.igGetWindowPos(out pos);
     return(new Vector2(pos.X, pos.Y));
 }