Class: ImBitVector

Inherits:
FFI::Struct
  • Object
show all
Defined in:
lib/imgui.rb

Instance Method Summary collapse

Instance Method Details

#ClearObject



3558
3559
3560
# File 'lib/imgui.rb', line 3558

def Clear()
  ImGui::ImBitVector_Clear(self)
end

#ClearBit(n) ⇒ Object



3570
3571
3572
# File 'lib/imgui.rb', line 3570

def ClearBit(n)
  ImGui::ImBitVector_ClearBit(self, n)
end

#Create(sz) ⇒ Object



3554
3555
3556
# File 'lib/imgui.rb', line 3554

def Create(sz)
  ImGui::ImBitVector_Create(self, sz)
end

#SetBit(n) ⇒ Object



3566
3567
3568
# File 'lib/imgui.rb', line 3566

def SetBit(n)
  ImGui::ImBitVector_SetBit(self, n)
end

#TestBit(n) ⇒ Object



3562
3563
3564
# File 'lib/imgui.rb', line 3562

def TestBit(n)
  ImGui::ImBitVector_TestBit(self, n)
end