當前位置: 首頁>>代碼示例>>Python>>正文


Python QGraphicsLineItem.setTransformOriginPoint方法代碼示例

本文整理匯總了Python中PyQt5.QtWidgets.QGraphicsLineItem.setTransformOriginPoint方法的典型用法代碼示例。如果您正苦於以下問題:Python QGraphicsLineItem.setTransformOriginPoint方法的具體用法?Python QGraphicsLineItem.setTransformOriginPoint怎麽用?Python QGraphicsLineItem.setTransformOriginPoint使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PyQt5.QtWidgets.QGraphicsLineItem的用法示例。


在下文中一共展示了QGraphicsLineItem.setTransformOriginPoint方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: createArrow

# 需要導入模塊: from PyQt5.QtWidgets import QGraphicsLineItem [as 別名]
# 或者: from PyQt5.QtWidgets.QGraphicsLineItem import setTransformOriginPoint [as 別名]
 def createArrow(self):
     rad = self._RADIUS
     pen = QPen()
     pen.setWidth(3)
     color = QColor(Qt.blue)
     color.setAlphaF(0.25)
     pen.setBrush(color)
     if self._virtual_helix.isEvenParity():
         arrow = QGraphicsLineItem(rad, rad, 2*rad, rad, self)
     else:
         arrow = QGraphicsLineItem(0, rad, rad, rad, self)
     arrow.setTransformOriginPoint(rad, rad)
     arrow.setZValue(400)
     arrow.setPen(pen)
     self.arrow = arrow
     self.arrow.hide()
開發者ID:scholer,項目名稱:cadnano2.5,代碼行數:18,代碼來源:virtualhelixitem.py

示例2: createArrows

# 需要導入模塊: from PyQt5.QtWidgets import QGraphicsLineItem [as 別名]
# 或者: from PyQt5.QtWidgets.QGraphicsLineItem import setTransformOriginPoint [as 別名]
 def createArrows(self):
     rad = _RADIUS
     pen1 = self._pen1
     pen2 = self._pen2
     pen1.setWidth(3)
     pen2.setWidth(3)
     pen1.setBrush(Qt.gray)
     pen2.setBrush(Qt.lightGray)
     if self._virtual_helix.isEvenParity():
         arrow1 = QGraphicsLineItem(rad, rad, 2*rad, rad, self)
         arrow2 = QGraphicsLineItem(0, rad, rad, rad, self)
     else:
         arrow1 = QGraphicsLineItem(0, rad, rad, rad, self)
         arrow2 = QGraphicsLineItem(rad, rad, 2*rad, rad, self)
     arrow1.setTransformOriginPoint(rad, rad)
     arrow2.setTransformOriginPoint(rad, rad)
     arrow1.setZValue(400)
     arrow2.setZValue(400)
     arrow1.setPen(pen1)
     arrow2.setPen(pen2)
     self.arrow1 = arrow1
     self.arrow2 = arrow2
     self.arrow1.hide()
     self.arrow2.hide()
開發者ID:sdouglas,項目名稱:lr-notebook,代碼行數:26,代碼來源:bar.py


注:本文中的PyQt5.QtWidgets.QGraphicsLineItem.setTransformOriginPoint方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。