company logo

Size :: Size - Constructor

Implementation overview

Implementation details

  1. Copy contructor
    Size  :: Size ( odabagui::Size &cSize )

    The constructor creates a copy from the size passed in cSize.

    • cSize - Size of rectangle

      Size is usually defined in pixel width and pixel height.

  2. to list
  3. Default constructor
    Size  :: Size (  )
  4. to list
  5. Create size
    Size  :: Size ( int32 iWidth, int32 iHeight )

    The constructor creates a size value from the values passed in iWidth and iHeight.

    • iWidth - Width of a rectangle
    • iHeight - Hight of rectangle
  6. to list