IZoomRender.cs 434 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Numerics;
  4. using System.Text;
  5. namespace Veldrid.Common
  6. {
  7. public interface IZoomRender
  8. {
  9. public float HScale { get; set; }
  10. public float VScale { get; set; }
  11. public float HOffset { get; set; }
  12. public float VOffset { get; set; }
  13. public bool ZoomEnbled { get; set; }
  14. public Vector2 WindowScale { get; set; }
  15. }
  16. }