mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-22 00:11:37 +00:00
3.0 - unitypackage
This commit is contained in:
21
Runtime/Coord/Parallel/ParallelCoordContext.cs
Normal file
21
Runtime/Coord/Parallel/ParallelCoordContext.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace XCharts
|
||||
{
|
||||
public class ParallelCoordContext : MainComponentContext
|
||||
{
|
||||
public float x { get; internal set; }
|
||||
public float y { get; internal set; }
|
||||
public float width { get; internal set; }
|
||||
public float height { get; internal set; }
|
||||
public Vector3 position { get; internal set; }
|
||||
public float left { get; internal set; }
|
||||
public float right { get; internal set; }
|
||||
public float bottom { get; internal set; }
|
||||
public float top { get; internal set; }
|
||||
public bool runtimeIsPointerEnter { get; set; }
|
||||
internal List<ParallelAxis> parallelAxes = new List<ParallelAxis>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user