On this page
scaleSelf method
DomMatrix scaleSelf(Source
DomMatrix scaleSelf(num scale, [num originX, num originY]) {
if (originY != null) {
return _blink.BlinkDOMMatrix.instance
.scaleSelf_Callback_3_(this, scale, originX, originY);
}
if (originX != null) {
return _blink.BlinkDOMMatrix.instance
.scaleSelf_Callback_2_(this, scale, originX);
}
return _blink.BlinkDOMMatrix.instance.scaleSelf_Callback_1_(this, scale);
}
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-html/DomMatrix/scaleSelf.html