SizeF constructor

SizeF(
  1. double width,
  2. double height
)

Implementation

SizeF(double width, double height) {
  fontWidth = width;
  fontHeight = height;
}