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


Python Rectangle.makeLocation方法代碼示例

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


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

示例1: range

# 需要導入模塊: from rectangle import Rectangle [as 別名]
# 或者: from rectangle.Rectangle import makeLocation [as 別名]
                    ystartdiff = -1.*TUBE_LENGTH/128.,
                    debug=False)
    pack1.setNames(pixel="onepixel", tube="tubedecreasing", pack="packdecreasing")

    group1 = instr.makeTypeElement("Group1")
    for i in range(n_first):
        offset = i*8*128
        bank = "bank%d" % (i+1)
        rect = Rectangle(
                         (-y[offset+UL], x[offset+UL], z[offset+UL]),
                         (-y[offset+LL], x[offset+LL], z[offset+LL]),
                         (-y[offset+LR], x[offset+LR], z[offset+LR]),
                         (-y[offset+UR], x[offset+UR], z[offset+UR])
                         )
       	det = instr.makeDetectorElement(pack1.namepack, root=group1)
       	rect.makeLocation(instr, det, bank)

    # ---------- add in group2
    """
;;; source idl code
N_second=23
;z0_second=5.05/8.45*3.2
;x0_second=2.24/8.45*3.2
;z1_second=2.54/8.45*3.2
;x1_second=2.24/8.45*3.2
z0_second=5.09/7.06*2.7-0.0095
x0_second=2.22/7.06*2.7
z1_second=2.45/7.06*2.7+0.0095
x1_second=2.22/7.06*2.7
dx_second=x1_second-x0_second
dz_second=z1_second-z0_second
開發者ID:mareuter,項目名稱:mantidgeometry,代碼行數:33,代碼來源:nomad_geometry.py


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