123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace bbiwarg.Graphics
- {
- class Vertex
- {
- public float x;
- public float y;
- public float z;
- public Vertex(float x, float y, float z) {
- this.x = x;
- this.y = y;
- this.z = z;
- }
- }
- }
|