示例#1
0
 public IVertex(Vertex v)
 {
     this.position = (Int3)v.position;
     this.normal = v.normal;
     this.color = v.color;
     this.uv = v.uv;
 }
示例#2
0
 public static Int3 lerp(Int3 start, Int3 end, float delta)
 {
     return start + (end - start) * delta;
 }