MCPcopy Create free account
hub / github.com/Duet3D/RepRapFirmware / DecreaseDepth

Method DecreaseDepth

src/ObjectModel/ObjectModel.h:231–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229 void SetMaxDepth(unsigned int d) noexcept { maxDepth = d; }
230 bool IncreaseDepth() noexcept { if (currentDepth < maxDepth) { ++currentDepth; return true; } return false; }
231 void DecreaseDepth() noexcept { --currentDepth; }
232 void AddIndex(int32_t index) THROWS(GCodeException);
233 void AddIndex() THROWS(GCodeException);
234 void RemoveIndex() THROWS(GCodeException);

Callers 2

THROWSFunction · 0.80
THROWSFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected