Changeset 478
- Timestamp:
- Feb 10, 2012 10:20:53 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIgrid.py
r468 r478 362 362 id=wxID_IMCALIBRATE, kind=wx.ITEM_NORMAL,text='Calibrate') 363 363 self.ImageEdit.Append(help='Recalibrate detector by fitting to calibrant lines', 364 id=wxID_IMRECALIBRATE, kind=wx.ITEM_NORMAL,text='Re alibrate')364 id=wxID_IMRECALIBRATE, kind=wx.ITEM_NORMAL,text='Recalibrate') 365 365 self.ImageEdit.Append(help='Clear calibration data points and rings',id=wxID_IMCLEARCALIB, 366 366 kind=wx.ITEM_NORMAL,text='Clear calibration') -
trunk/GSASIIplot.py
r477 r478 2231 2231 x,y,z = drawingData['testPos'][0] 2232 2232 G2frame.G2plotNB.status.SetStatusText('moving test point %.4f,%.4f,%.4f'%(x,y,z),1) 2233 Draw() 2233 2234 2234 2235 if event.Dragging() and not event.ControlDown(): … … 2245 2246 angX,angY,angZ = drawingData['Rotation'][:3] 2246 2247 G2frame.G2plotNB.status.SetStatusText('New rotation: %.2f, %.2f, %.2f'%(angX,angY,angZ),1) 2247 Draw()2248 Draw() 2248 2249 2249 2250 def OnMouseWheel(event): … … 2260 2261 panel[names.index('cameraPos')].SetLabel('Camera Position: '+'%.2f'%(drawingData['cameraPos'])) 2261 2262 panel[names.index('cameraSlider')].SetValue(drawingData['cameraPos']) 2262 Draw()2263 Draw() 2263 2264 2264 2265 def getSelection(): … … 2333 2334 drawingData['viewPoint'] = [[Tx,Ty,Tz],pI] 2334 2335 SetViewPointText(drawingData['viewPoint'][0]) 2336 G2frame.G2plotNB.status.SetStatusText('View point at atom '+drawAtoms[pI[0]][ct-1]+str(pI),1) 2335 2337 2336 2338 elif key in ['p','P']: … … 2350 2352 drawingData['viewPoint'] = [[Tx,Ty,Tz],pI] 2351 2353 SetViewPointText(drawingData['viewPoint'][0]) 2354 G2frame.G2plotNB.status.SetStatusText('View point at atom '+drawAtoms[pI[0]][ct-1]+str(pI),1) 2352 2355 Draw() 2353 2356
Note: See TracChangeset
for help on using the changeset viewer.