Changeset 84


Ignore:
Timestamp:
Jun 4, 2010 11:44:26 AM (14 years ago)
Author:
vondreel
Message:

remove extra imports from various modules

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIgrid.py

    r83 r84  
    22import wx
    33import wx.grid as wg
    4 import matplotlib as mpl
    5 import math
    64import time
    75import cPickle
    86import GSASIIpath
    9 import GSASIIpeak as G2pk
    10 import GSASIIlattice as G2lat
    11 import GSASIIindex as G2indx
    12 import GSASIIimage as G2img
    13 import GSASIIspc as G2spc
    14 import GSASIIElem as G2elem
    157import GSASIIplot as G2plt
    16 import GSASIIIO as G2IO
    178import GSASIIpwdGUI as G2pdG
    189import GSASIIimgGUI as G2imG
    1910import GSASIIphsGUI as G2phG
    2011
    21 # trig functions in degrees
    22 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.pi
    26        
    2712[ wxID_ATOMSEDITADD, wxID_ATOMSEDITINSERT,
    2813] = [wx.NewId() for _init_coll_Atom_Items in range(2)]
  • trunk/GSASIIpeak.py

    r82 r84  
    66import numpy as np
    77import numpy.linalg as nl
    8 import os.path as ospath
    98import GSASIIpath
    109import pypowder as pyp              #assumes path has been amended to include correctr bin directory
    1110import GSASIIplot as G2plt
    12 import GSASIIlattice as G2lat
    1311
    1412# trig functions in degrees
  • trunk/GSASIIpwdGUI.py

    r82 r84  
    22import wx
    33import wx.grid as wg
    4 import matplotlib as mpl
    54import math
    65import time
     
    109import GSASIIlattice as G2lat
    1110import GSASIIindex as G2indx
    12 import GSASIIimage as G2img
    13 import GSASIIspc as G2spc
    14 import GSASIIElem as G2elem
    1511import GSASIIplot as G2plt
    16 import GSASIIIO as G2IO
    1712import GSASIIgrid as G2gd
    1813
Note: See TracChangeset for help on using the changeset viewer.