Add field 2d viewer

This commit is contained in:
Evgeny Redikultsev
2025-12-27 21:59:20 +05:00
parent d81b72d420
commit 3b95fab0b2
28 changed files with 726 additions and 29 deletions

View File

@@ -23,7 +23,14 @@ namespace FieldVisualizer.Windows.UserControls
viewModel.Legend = LegendViewer;
}
public IPrimitiveSet PrimitiveSet { get => viewModel.PrimitiveSet; set { viewModel.PrimitiveSet = value; } }
public IPrimitiveSet PrimitiveSet
{
get => viewModel.PrimitiveSet;
set
{
viewModel.PrimitiveSet = value;
}
}
internal void Refresh()
{