Changeset 4604 for trunk/GSASIIconstrGUI.py
- Timestamp:
- Oct 17, 2020 5:49:37 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIconstrGUI.py
r4603 r4604 3018 3018 Indx[refSel.GetId()] = i 3019 3019 refAtmSizer.Add(refSel,0,WACV) 3020 refHelpInfo = ''' 3021 The Orientation reference control is used to tranform 3022 the Cartesian 3023 axes for rigid bodies with three atoms, A, B and C. 3024 The vector from A to B defines the x-axis and the z axis is placed 3025 in the plane defined by A to B and A to C. 3026 ''' 3027 hlp = G2G.HelpButton(VectorRBDisplay,refHelpInfo,wrap=400) 3028 refAtmSizer.Add(hlp,0,wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL,2) 3020 3029 return refAtmSizer 3021 3030 … … 3372 3381 RefObjs.append(refObj) 3373 3382 if 'molCent' not in rbData: rbData['molCent'] = False #patch 3374 molcent = wx.Button(ResidueRBDisplay,label=' Use RB center?')3383 molcent = wx.Button(ResidueRBDisplay,label=' Center RB?') 3375 3384 molcent.Bind(wx.EVT_BUTTON,OnMolCent) 3376 3385 Indx[molcent.GetId()] = resGrid 3377 3386 refAtmSizer.Add(molcent,0,WACV) 3387 refHelpInfo = ''' 3388 * The "Orientation Reference" control is used to tranform 3389 the Cartesian 3390 axes for rigid bodies with three atoms, A, B and C. 3391 The vector from A to B defines the x-axis and the z axis is placed 3392 in the plane defined by A to B and A to C. 3393 3394 %%* The "Center RB?" button will redefine the origin of the 3395 rigid body to the midpoint of all atoms in the body (not mass weighted) 3396 ''' 3397 hlp = G2G.HelpButton(ResidueRBDisplay,refHelpInfo,wrap=400) 3398 refAtmSizer.Add(hlp,0,wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL,2) 3378 3399 3379 3400 mainSizer = wx.BoxSizer(wx.VERTICAL)
Note: See TracChangeset
for help on using the changeset viewer.