public void Remove(Transformation transformation)
 {
     if (transformation.Affects(_path))
     {
         transformation.RemoveFrom(_transformable);
     }
 }
 public void Add(Transformation transformation)
 {
     if (transformation.Affects(_path))
     {
         transformation.ApplyTo(_transformable);
     }
 }