2017-01-26 23:40:46 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2017-06-21 01:19:47 +03:00
|
|
|
|
namespace CsbBuilder.BuilderNodes
|
2017-01-26 23:40:46 +03:00
|
|
|
|
{
|
|
|
|
|
public class BuilderAisacGraphNode : BuilderBaseNode
|
|
|
|
|
{
|
|
|
|
|
[Category("General")]
|
2021-03-19 22:24:07 +03:00
|
|
|
|
[Description("Type of this graph. Values are unknown.")]
|
2017-01-26 23:40:46 +03:00
|
|
|
|
public byte Type { get; set; }
|
|
|
|
|
|
|
|
|
|
[Category("Vector"), DisplayName("Maximum X")]
|
2021-03-19 22:24:07 +03:00
|
|
|
|
[Description("End X position of this graph.")]
|
2017-01-26 23:40:46 +03:00
|
|
|
|
public float MaximumX { get; set; }
|
|
|
|
|
|
|
|
|
|
[Category("Vector"), DisplayName("Minimum X")]
|
2021-03-19 22:24:07 +03:00
|
|
|
|
[Description("Begin X position of this graph.")]
|
2017-01-26 23:40:46 +03:00
|
|
|
|
public float MinimumX { get; set; }
|
|
|
|
|
|
|
|
|
|
[Category("Vector"), DisplayName("Maximum Y")]
|
2021-03-19 22:24:07 +03:00
|
|
|
|
[Description("End Y position of this graph.")]
|
2017-01-26 23:40:46 +03:00
|
|
|
|
public float MaximumY { get; set; }
|
|
|
|
|
|
|
|
|
|
[Category("Vector"), DisplayName("Minimum Y")]
|
2021-03-19 22:24:07 +03:00
|
|
|
|
[Description("End X position of this graph.")]
|
2017-01-26 23:40:46 +03:00
|
|
|
|
public float MinimumY { get; set; }
|
|
|
|
|
|
|
|
|
|
[Category("Vector"), DisplayName("Points")]
|
|
|
|
|
public List<BuilderAisacPointNode> Points { get; set; }
|
|
|
|
|
|
|
|
|
|
public BuilderAisacGraphNode()
|
|
|
|
|
{
|
|
|
|
|
Points = new List<BuilderAisacPointNode>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|