igGetWindowPos() 개인적인 메소드

private igGetWindowPos ( Vector2 &@out ) : void
@out Vector2
리턴 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));
 }