ImVec4: 4D vector used to store clipping rectangles, colors etc. [Compile-time configurable type]
2836 2837 2838 2839 2840 2841 2842 2843
# File 'lib/imgui.rb', line 2836 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