Class: ImBitVector

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

Instance Method Summary collapse

Instance Method Details

#ClearObject



3577
3578
3579
# File 'lib/imgui.rb', line 3577

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

#ClearBit(n) ⇒ Object



3589
3590
3591
# File 'lib/imgui.rb', line 3589

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

#Create(sz) ⇒ Object



3573
3574
3575
# File 'lib/imgui.rb', line 3573

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

#SetBit(n) ⇒ Object



3585
3586
3587
# File 'lib/imgui.rb', line 3585

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

#TestBit(n) ⇒ Object



3581
3582
3583
# File 'lib/imgui.rb', line 3581

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