Changeset 84
- Timestamp:
- Jun 4, 2010 11:44:26 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIgrid.py
r83 r84 2 2 import wx 3 3 import wx.grid as wg 4 import matplotlib as mpl5 import math6 4 import time 7 5 import cPickle 8 6 import GSASIIpath 9 import GSASIIpeak as G2pk10 import GSASIIlattice as G2lat11 import GSASIIindex as G2indx12 import GSASIIimage as G2img13 import GSASIIspc as G2spc14 import GSASIIElem as G2elem15 7 import GSASIIplot as G2plt 16 import GSASIIIO as G2IO17 8 import GSASIIpwdGUI as G2pdG 18 9 import GSASIIimgGUI as G2imG 19 10 import GSASIIphsGUI as G2phG 20 11 21 # trig functions in degrees22 sind = lambda x: math.sin(x*math.pi/180.)23 tand = lambda x: math.tan(x*math.pi/180.)24 cosd = lambda x: math.cos(x*math.pi/180.)25 asind = lambda x: 180.*math.asin(x)/math.pi26 27 12 [ wxID_ATOMSEDITADD, wxID_ATOMSEDITINSERT, 28 13 ] = [wx.NewId() for _init_coll_Atom_Items in range(2)] -
trunk/GSASIIpeak.py
r82 r84 6 6 import numpy as np 7 7 import numpy.linalg as nl 8 import os.path as ospath9 8 import GSASIIpath 10 9 import pypowder as pyp #assumes path has been amended to include correctr bin directory 11 10 import GSASIIplot as G2plt 12 import GSASIIlattice as G2lat13 11 14 12 # trig functions in degrees -
trunk/GSASIIpwdGUI.py
r82 r84 2 2 import wx 3 3 import wx.grid as wg 4 import matplotlib as mpl5 4 import math 6 5 import time … … 10 9 import GSASIIlattice as G2lat 11 10 import GSASIIindex as G2indx 12 import GSASIIimage as G2img13 import GSASIIspc as G2spc14 import GSASIIElem as G2elem15 11 import GSASIIplot as G2plt 16 import GSASIIIO as G2IO17 12 import GSASIIgrid as G2gd 18 13
Note: See TracChangeset
for help on using the changeset viewer.