30 lines
593 B
C#
30 lines
593 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows;
|
|||
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|||
|
|
|||
|
|
|||
|
namespace CtrEditor
|
|||
|
{
|
|||
|
partial class dataDebug : ObservableObject
|
|||
|
{
|
|||
|
[ObservableProperty]
|
|||
|
private Point transformedBoundingBoxCenter;
|
|||
|
|
|||
|
[ObservableProperty]
|
|||
|
private Point currentPosition;
|
|||
|
|
|||
|
[ObservableProperty]
|
|||
|
private float lastAngle;
|
|||
|
|
|||
|
[ObservableProperty]
|
|||
|
private float angle;
|
|||
|
|
|||
|
[ObservableProperty]
|
|||
|
string note;
|
|||
|
}
|
|||
|
}
|