Vertex.cs 386 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace bbiwarg.Graphics
  7. {
  8. class Vertex
  9. {
  10. public float x;
  11. public float y;
  12. public float z;
  13. public Vertex(float x, float y, float z) {
  14. this.x = x;
  15. this.y = y;
  16. this.z = z;
  17. }
  18. }
  19. }