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