public VertexPosition3DColorSkinned Lerp(VertexPosition3DColorSkinned other, float interpolation)
 {
     return(new VertexPosition3DColorSkinned(Position.Lerp(other.Position, interpolation),
                                             Color.Lerp(other.Color, interpolation), Skinning.Lerp(other.Skinning, interpolation)));
 }
Ejemplo n.º 2
0
 public VertexPosition3DUVSkinned Lerp(VertexPosition3DUVSkinned other, float interpolation)
 {
     return(new VertexPosition3DUVSkinned(Position.Lerp(other.Position, interpolation),
                                          UV.Lerp(other.UV, interpolation), Skinning.Lerp(other.Skinning, interpolation)));
 }