ImVec4: 4D vector used to store clipping rectangles, colors etc. [Compile-time configurable type]
1874 1875 1876 1877 1878 1879 1880 1881
# File 'lib/imgui.rb', line 1874 def ImVec4.create(x = 0, y = 0, z = 0, w = 0) instance = ImVec4.new instance[:x] = x instance[:y] = y instance[:z] = z instance[:w] = w return instance end