Changeset 42158d2 in sasmodels for sasmodels/jitter.py
- Timestamp:
- Jan 26, 2018 10:54:53 PM (7 years ago)
- Branches:
- master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 1f991d6
- Parents:
- bb4ff2a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/jitter.py
r0d5a655 r42158d2 13 13 import argparse 14 14 15 import mpl_toolkits.mplot3d # Adds projection='3d' option to subplot 15 try: # CRUFT: travis-ci does not support mpl_toolkits.mplot3d 16 import mpl_toolkits.mplot3d # Adds projection='3d' option to subplot 17 except ImportError: 18 pass 19 16 20 import matplotlib.pyplot as plt 17 21 from matplotlib.widgets import Slider, CheckButtons
Note: See TracChangeset
for help on using the changeset viewer.