New feature to calculate the radius of a polygonal circle

This commit is contained in:
Dion Moult
2021-10-21 12:43:16 +11:00
parent d2e9194636
commit 456adf453d
14 changed files with 200 additions and 6 deletions
+11 -4
View File
@@ -84,6 +84,13 @@ def owner():
prophet.verify()
@pytest.fixture
def qto():
prophet = Prophecy(blenderbim.core.tool.Qto)
yield prophet
prophet.verify()
@pytest.fixture
def root():
prophet = Prophecy(blenderbim.core.tool.Root)
@@ -127,15 +134,15 @@ def type():
@pytest.fixture
def voider():
prophet = Prophecy(blenderbim.core.tool.Voider)
def unit():
prophet = Prophecy(blenderbim.core.tool.Unit)
yield prophet
prophet.verify()
@pytest.fixture
def unit():
prophet = Prophecy(blenderbim.core.tool.Unit)
def voider():
prophet = Prophecy(blenderbim.core.tool.Voider)
yield prophet
prophet.verify()