Boundary画线算法,精度导致的问题修复

This commit is contained in:
艾竹
2023-04-16 14:56:53 +08:00
parent 4b8a03afb6
commit cbfbf96033
6 changed files with 40 additions and 8 deletions

View File

@@ -59,7 +59,14 @@ namespace AIStudio.Wpf.Flowchart
{
get
{
return SubType.ToEnum<MindType>();
if (SubType == null)
{
return MindType.Mind;
}
else
{
return SubType.ToEnum<MindType>();
}
}
}