暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PolarCoordContext.cs 728B

1234567891011121314151617181920212223242526
  1. using System;
  2. using UnityEngine;
  3. namespace XCharts.Runtime
  4. {
  5. public class PolarCoordContext : MainComponentContext
  6. {
  7. /// <summary>
  8. /// the center position of polar in container.
  9. /// |极坐标在容器中的具体中心点。
  10. /// </summary>
  11. public Vector3 center;
  12. public float radius;
  13. /// <summary>
  14. /// the true radius of polar.
  15. /// |极坐标的运行时实际内半径。
  16. /// </summary>
  17. public float insideRadius;
  18. /// <summary>
  19. /// the true radius of polar.
  20. /// |极坐标的运行时实际外半径。
  21. /// </summary>
  22. public float outsideRadius;
  23. public bool isPointerEnter;
  24. }
  25. }