Files
oak-editor/app/node/block/gap/gap.cpp
T

18 lines
192 B
C++

#include "gap.h"
GapBlock::GapBlock()
{
}
rational GapBlock::length()
{
return length_;
}
void GapBlock::set_length(const rational &length)
{
length_ = length;
RefreshSurrounds();
}