前段時間根據公司要求做乙個工作流方面的demo,遂模仿ibm的bpm monitor做了乙個demo。因company secret原因,不能公開全部原始碼,現將部分**貼於此,供各位大蝦點評。
畫線**:
package com
/** 建立組建的子元件 **/
override protected function createchildren():void
}/** 更改屬性 **/
override protected function commitproperties():void
}/** 在組建中畫出子元件,並確定子元件在元件中的位置和大小 **/
override protected function updatedisplaylist(unscaledwidth:number, unscaledheight:number):void
/** 帶箭頭的線 **/
private function drawline(startpoint:point,endpoint:point,startl:int):void
/** 自定義畫線 **/
public function cusline(arr:array):void
for(var i:int=0;i0)
startline=startl;
this.graphics.moveto(startpoint.x,startpoint.y);
this.graphics.linestyle(2,linecolor,0.7);
//用於確定根據開始節點和結束節點畫出的線是否是直線
if(startpoint.x==endpoint.x||startpoint.y==endpoint.y)elseelse
this.graphics.lineto(endpoint.x,endpoint.y);
}elseelse
this.graphics.lineto(endpoint.x,endpoint.y);}}
startline=10;//還原初始值
} /** 畫箭頭 **/
private function drawarrowhead(startpoint:point,endpoint:point):void
/** 得到箭頭的角度 **/
private function getangle(startpoint:point,endpoint:point):number
var angle:number = math.atan2(temy,temx)*(180/math.pi)
return angle;
}/** 刪除 **/
public function removeline():void
}}
python 仿函式 C 仿函式
c 的標準庫stl裡面有6大部件,其中之一為仿函式。初始看到這一名字可能讓人摸不著頭腦 函式倒是挺容易理解,何故又起個仿函式的名字呢?本文將帶你揭開它看起來挺讓人迷惑但是實際上很簡單的面紗。仿函式,看名字就知道它肯定和函式有什麼關聯,但是也肯定和函式有什麼區別。函式主要是一塊接收輸入引數然後按照一定...
服務機械人是追求高度仿人化,還是注重技術實用化?
機械人從一出現就被打上了 人形化 標籤,但客觀上講未來人形機械人還需要相當長的時間來跨越眾多技術難關,探尋成熟的商業化路徑,與此同時,機械人相關技術的實用化 標準化 規模化也更加值得關注,只有具備一定商業規模的 實用產品級的機械人大量湧現,機械人行業才能迎來真正意義上的爆發。機械人大熱 近年來,機械...
仿射函式和仿射組合
假設f是乙個矢性函式,若它可以表示為f x1,x2,xn a1x1 a2x2 anxn b,其中ai可以是標量,也可以是矩陣,則稱f是仿射函式。矢性函式定義 標性函式f x ax b 即我們通常見到的函式 其中a x b都是標量。維基百科的解釋 affine combination,a certai...