height property

double height

Implementation

double get height {
  return this.scale.y * this.oriHeight;
}
void height=(double h)

Implementation

set height(double h) {
  this.scale.y = h / this.oriHeight;
}