Changeset 17502
- Timestamp:
- 03/20/14 10:56:07 (11 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/plotoptions.py
r17480 r17502 41 41 42 42 #go through args and build list (like pairoptions) 43 rawoptions=pairoptions (*arg)43 rawoptions=pairoptions.pairoptions(*arg) 44 44 numoptions=len(arg)/2 45 45 rawlist=[] # cannot be a dict since they do not support duplicate keys … … 69 69 #self.list=defaultdict(dict) 70 70 for i in xrange(numberofplots): 71 self.list[i]=pairoptions ()71 self.list[i]=pairoptions.pairoptions() 72 72 73 73 #process plot options -
issm/trunk-jpl/src/m/plot/plotmodel.py
r17497 r17502 1 1 import numpy as npy 2 from plotoptions import plotoptions 2 3 3 4 try: … … 6 7 print "could not import pylab, matplotlib has not been installed, no plotting capabilities enabled" 7 8 8 from plotoptions import plotoptions9 9 from plot_manager import plot_manager 10 10 from math import ceil, sqrt
Note:
See TracChangeset
for help on using the changeset viewer.