getScissor method
dynamic
getScissor(
- dynamic target
Implementation
getScissor(target) {
var scissor = this._scissor!;
target.x = scissor["x"];
target.y = scissor["y"];
target.width = scissor["width"];
target.height = scissor["height"];
return target;
}