setSize method

void setSize(
  1. int width,
  2. int height
)

Implementation

void setSize( int width, int height ) {
  _width = width;
  _height = height;
  renderer.setSize( width.toDouble(), height.toDouble() );
}