Color picker done

This commit is contained in:
Иван Ивашкин
2024-12-05 00:02:37 +05:00
parent bcea9639f6
commit 8205dafdbd
9 changed files with 119 additions and 18 deletions

View File

@@ -30,7 +30,14 @@ namespace StructureHelperCommon.Models.Functions.Decorator
{
return y;
}
return 0;
else if (y <= downBound)
{
return downBound;
}
else
{
return upBound;
}
}
public override GraphSettings GetGraphSettings()
{