2026-04-01 12:46:48 +02:00
|
|
|
|
using Vector3VisualizerSource;
|
|
|
|
|
|
using Microsoft.VisualStudio.Extensibility.UI;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Vector3Visualizer;
|
|
|
|
|
|
|
|
|
|
|
|
internal sealed class Vector3VisualizerUserControl : RemoteUserControl
|
|
|
|
|
|
{
|
|
|
|
|
|
public Vector3VisualizerUserControl(Vector3Model? dataContext) : base(dataContext)
|
|
|
|
|
|
{
|
|
|
|
|
|
Vector3Model = (Vector3Model?)DataContext;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Vector3Model? Vector3Model { get; }
|
2026-01-19 14:16:48 +01:00
|
|
|
|
}
|