added gap node and block improvements

This commit is contained in:
itsmattkc
2019-07-27 03:23:35 -07:00
parent 53da858c45
commit 32b8d0a7d6
8 changed files with 154 additions and 20 deletions
+17
View File
@@ -0,0 +1,17 @@
#include "gap.h"
GapBlock::GapBlock()
{
}
rational GapBlock::length()
{
return length_;
}
void GapBlock::set_length(const rational &length)
{
length_ = length;
RefreshSurrounds();
}