Пример #1
0
 public void Vector(EaseType e, Time start, Time end, VectorSize a, VectorSize b) => CreateCommand(CommandType.Vector, e, start, end, a, b);
Пример #2
0
 public void Vector(double start, double end, VectorSize a, VectorSize b) => CreateCommand(CommandType.Vector, start, end, a, b);
Пример #3
0
 public void Vector(double t, VectorSize c) => Vector(t, c.X, c.Y);
Пример #4
0
 public void Vector(Time t, VectorSize c) => Vector(t, c.X, c.Y);
Пример #5
0
 public void Vector(VectorSize c) => CreateCommand(CommandType.Vector, 0, c);