/**
* @constructor
*/
function XUIFlowDirection() {
}

XUIFlowDirection.prototype = {

    //接口
    /**
    * 设置中心点坐标
    * @param {Array} ArrCoordinate 坐标
    */
    SetCenter:function (ArrCoordinate) {
    },

    /**
    * 设置颜色
    * @param {Number} nIndex 索引
    * @param {String} strColor 颜色
    * @property {Collection} FlowDirectionColor [1,"0xff41fc9d"]
    */
    SetFlowDirectionColor:function (nIndex,strColor) {
    },

    /**
    * 设置大小
    * @param {Number} nIndex 索引
    * @param {Number} nSize 尺寸
    * @property {Collection} FlowDirectionSize [1,1]
    */
    SetFlowDirectionSize:function (nIndex,nSize) {
    },

    /**
    * 设置透明度
    * @param {Number} nIndex 索引
    * @param {Number} nOpacity 透明度
    * @property {Collection} FlowDirectionOpacity [1,0.4]
    */
    SetFlowDirectionOpacity:function (nIndex,nOpacity) {
    },

}