Yahoo! UI Library

CHZERO  1.0.0

Yahoo! UI Library > CHZERO > Size.js (source view)
Search:
 
Filters
/**
 * OpenLayers Size<br/>
 * 너비/높이 묶음을 나타냄.
 * @class Size
 * @constructor
 * @namespace OpenLayers
 * @param {Number} x width
 * @param {Number} y height
 */
OpenLayers.Size = OpenLayers.Class({
	/**
	 * width
	 * @property x
	 * @type {Number}
	 */
	x: 0.0,
	/**
	 * height
	 * @property y
	 * @type {Number}
	 */
	y: 0.0,

	/**
	* Size clone.
	* @method clone
	* @return {OpenLayers.Size} size
	*/
	clone: function(){},
	/**
	* 다른 Size와 비교해서 같으면 true 반환
	* @method equals
	* @return {Boolean} 같으면 true
	*/
	equals: function(sz){},

})

Copyright © 2012 Yahoo! Inc. All rights reserved.