5 lines
82 B
JavaScript
5 lines
82 B
JavaScript
function Rect(w = 0,h = 0)
|
|
{
|
|
this.w = parseFloat(w);
|
|
this.h = parseFloat(h);
|
|
} |