コード例 #1
0
ファイル: Stroke.php プロジェクト: stdtabs/phptabs
 public function copyFrom(Stroke $stroke)
 {
     $this->setValue($stroke->getValue());
     $this->setDirection($stroke->getDirection());
 }
コード例 #2
0
ファイル: PolyLine.php プロジェクト: venca-x/nettegmap
 public function getArray()
 {
     return array("stroke" => $this->stroke->getArray(), "coordinates" => $this->coordinates);
 }