IGraphicElement.cs 396 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using MathNet.Numerics.LinearAlgebra.Single;
  8. namespace bbiwarg.Graphics
  9. {
  10. interface IGraphicElement
  11. {
  12. void draw();
  13. List<Vector> getVertices();
  14. uint[] getTriangleIndices();
  15. Color getColor();
  16. }
  17. }