123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace bbiwarg.Graphics
- {
- class Vertex
- {
- private float x;
- private float y;
- private float z;
- public Vertex(float x, float y, float z) {
- this.x = x;
- this.y = y;
- this.z = z;// 300;
- }
- public float getX()
- {
- return x;
- }
- public float getY()
- {
- return y;
- }
- public float getZ()
- {
- return z;
- }
- }
- }
|