Exemple #1
0
 private async ValueTask SetAsync(string identifier, DOMMatrix value)
 {
     operations.Add(new Operation {
         Type = OperationType.Set, Identifier = identifier, Value = value
     });
 }
Exemple #2
0
 public ValueTask TransformAsync(DOMMatrix values) => InvokeOnCtxAsync("transform", values);
Exemple #3
0
 protected ValueTask SetAsync(string field, DOMMatrix value) => InvokeEvalAsync(field, JsonSerializer.Serialize(value));
Exemple #4
0
 public ValueTask CurrentTransformAsync(DOMMatrix value) => SetAsync("currentTransform", value);