IGraphicElement3D.cs 300 B

123456789101112131415
  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.GraphicElements3D
  9. {
  10. interface IGraphicElement3D
  11. {
  12. void draw();
  13. }
  14. }