mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-05-01 13:39:28 +08:00
项目结构调整
This commit is contained in:
21
Others/Live-Charts-master/Core/BezierData.cs
Normal file
21
Others/Live-Charts-master/Core/BezierData.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace LiveChartsCore
|
||||
{
|
||||
public class BezierData
|
||||
{
|
||||
public BezierData()
|
||||
{
|
||||
}
|
||||
|
||||
public BezierData(LvcPoint point)
|
||||
{
|
||||
Point1 = point;
|
||||
Point2 = point;
|
||||
Point3 = point;
|
||||
}
|
||||
|
||||
public LvcPoint Point1 { get; set; }
|
||||
public LvcPoint Point2 { get; set; }
|
||||
public LvcPoint Point3 { get; set; }
|
||||
public LvcPoint StartPoint { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user