C# Class Core2D.Math.Size2

Size definition.
ファイルを表示 Open project: Core2D/Core2D

Public Properties

Property Type Description
Height double
Width double

Public Methods

Method Description
Create ( double width, double height ) : Size2

Creates a new Size2 instance.

Size2 ( double width, double height )

Initializes a new Size2 instance.

Method Details

Create() public static method

Creates a new Size2 instance.
public static Create ( double width, double height ) : Size2
width double
height double
return Size2

Size2() public method

Initializes a new Size2 instance.
public Size2 ( double width, double height )
width double
height double

Property Details

Height public_oe property

public double Height
return double

Width public_oe property

public double Width
return double