コード例 #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);