Esempio n. 1
0
 public static APLValue <IList <AnimatedProperty> > Single(APLTransform from, APLTransform to)
 {
     return(new APLValue <IList <AnimatedProperty> >(
                new List <AnimatedProperty>
     {
         new AnimatedTransform(from, to)
     }));
 }
Esempio n. 2
0
        public AnimatedTransform(APLTransform from, APLTransform to)
        {
            From = new List <APLTransform>
            {
                from
            };

            To = new List <APLTransform>
            {
                to
            };
        }