LineAxisType.cs 177 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Veldrid.Common
  5. {
  6. public enum LineAxisType
  7. {
  8. Linear = 0,
  9. Log = 1
  10. }
  11. }