MCPcopy Create free account
hub / github.com/BespokeSynth/BespokeSynth / GetUIGrids

Method GetUIGrids

Source/IDrawableModule.cpp:843–852  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

841}
842
843std::vector<UIGrid*> IDrawableModule::GetUIGrids() const
844{
845 std::vector<UIGrid*> grids = mUIGrids;
846 for (int i = 0; i < mChildren.size(); ++i)
847 {
848 std::vector<UIGrid*> childGrids = mChildren[i]->GetUIGrids();
849 grids.insert(grids.end(), childGrids.begin(), childGrids.end());
850 }
851 return grids;
852}
853
854void IDrawableModule::GetDimensions(float& width, float& height)
855{

Callers 3

FindValidTargetsMethod · 0.80
GetDropTargetMethod · 0.80
StoreSnapshotMethod · 0.80

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected