Prusa Slicer 2.6.0
Loading...
Searching...
No Matches
ImVec2ih Struct Reference

#include <src/imgui/imgui_internal.h>

Public Member Functions

 ImVec2ih ()
 
 ImVec2ih (short _x, short _y)
 
 ImVec2ih (const ImVec2 &rhs)
 

Public Attributes

short x
 
short y
 

Detailed Description

Constructor & Destructor Documentation

◆ ImVec2ih() [1/3]

ImVec2ih::ImVec2ih ( )
inline
463{ x = y = 0; }
short x
Definition imgui_internal.h:462
short y
Definition imgui_internal.h:462

References x, and y.

◆ ImVec2ih() [2/3]

ImVec2ih::ImVec2ih ( short  _x,
short  _y 
)
inline
464{ x = _x; y = _y; }

References x, and y.

◆ ImVec2ih() [3/3]

ImVec2ih::ImVec2ih ( const ImVec2 rhs)
inlineexplicit
465{ x = (short)rhs.x; y = (short)rhs.y; }
float y
Definition imgui.h:246
float x
Definition imgui.h:246

References ImVec2::x, x, ImVec2::y, and y.

Member Data Documentation

◆ x

◆ y


The documentation for this struct was generated from the following file: