Exemple #1
0
 public void TransformUV(float fScale, Vector2f vTranslate)
 {
     foreach (var pair in SparseNodes.NonZeroValues())
     {
         GraphNode g = pair.Value;
         if (g.frozen)
         {
             g.uv = (g.uv * fScale) + vTranslate;
         }
     }
 }