/* * ******************************************************************************************************************** * * iFHS7. * ;BBMBMBMc rZMBMBR BMB * MBEr:;PBM, 7MBMMEOBB: BBB RBW * XK: BO SB. :SZ MBM. c;; ir BBM :FFr :SSF: ;xBMB:r iuGXv. i:. iF2; * DBBM0r. :D S7 ;XMBMB GMBMu. MBM: BMB MBMBBBMBMS WMBMBMBBK MBMBMBM BMBRBMBW .MBMBMBMBB * :JMRMMD .. , 1MMRM1; ;MBMBBR: MBM ;MB: BMB: MBM. RMBr sBMH BM0 UMB, BMB. KMBv * ;. XOW B1; :uM: 1RE, i .2BMBs rMB. MBO MBO JMB; MBB MBM BBS 7MBMBOBM: MBW :BMc * OBRJ.SEE MRDOWOR, 3DE:7OBM . ;BMB RMR7BM BMB MBB. BMB ,BMR .BBZ MMB rMB, BMM rMB7 * :FBRO0D0 RKXSXPR. JOKOOMPi BMBSSWBMB; BMBB: MBMB0ZMBMS .BMBOXRBMB MBMDE RBM2;SMBM; MBB xBM2 * iZGE O0SHSPO. uGZ7. sBMBMBDL :BMO OZu:BMBK, rRBMB0; ,EBMB xBMBr:ER. RDU :OO; * ,BZ, 1D0 RPSFHXR. xWZ .SMr . .BBB * :0BMRDG RESSSKR. 2WOMBW; BMBMR * i0BM: SWKHKGO MBDv * .UB OOGDM. MK, Copyright (c) 2015-2018. 斯伯坦机器人世界 * , XMW .. * r All rights reserved. * * ******************************************************************************************************************** */ import SGraphyItem from '../SGraphyItem' import SRect from '../types/SRect' /** * SGraphy引擎时钟Item * * @author Andy */ export default class SGraphyRectItem extends SGraphyItem { /** * 构造函数 */ constructor(width, height, parent) { super(parent) this.name = 'RectItem' this.width = width this.height = height this.style = '#f00' this.canMove = true } // Function constructor() /** * Item对象边界区域 * * @return SRect */ boundingRect() { return new SRect(0, 0, this.width, this.height) } // Function boundingRect() /** * 绘制时钟 * * @param canvas 画布 * @param rect 绘制区域 */ onDraw(canvas, rect) { canvas.fillStyle = this.style canvas.fillRect(0, 0, this.width, this.height) } // Function onDraw() } // Class SGraphyRectItem