MCPcopy Create free account
hub / github.com/SFML/SFML / Cell

Method Cell

examples/keyboard/Keyboard.cpp:446–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

444 struct Cell
445 {
446 Cell(sf::Keyboard::Scancode theScancode, sf::Vector2f sizeRatio = {1.f, 1.f}, float marginRightRatio = 0.f) :
447 scancode(theScancode),
448 size(sizeRatio * keySize),
449 marginRight(marginRightRatio * keySize)
450 {
451 }
452
453 Cell(sf::Keyboard::Scancode theScancode, float marginRightRatio) :
454 Cell(theScancode, {1.f, 1.f}, marginRightRatio)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected