Transform
class Transform{
constructor(x, y, width, height, radius){
this.x = x;
this.y = y;
this.width = width;
this.height = height;
this.radius = radius;
}
}Last updated
class Transform{
constructor(x, y, width, height, radius){
this.x = x;
this.y = y;
this.width = width;
this.height = height;
this.radius = radius;
}
}Last updated