IBB-Helper 0.4.8.dev6__tar.gz → 0.4.8.dev7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ibb_helper-0.4.8.dev6/src/IBB_Helper.egg-info → ibb_helper-0.4.8.dev7}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/pyproject.toml +1 -1
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/extend_plot.py +1 -4
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7/src/IBB_Helper.egg-info}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/LICENSE +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/README.md +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/setup.cfg +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/setup.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/__init__.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/animate.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/combine_plots.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/display.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/display_eigen.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/display_matrix.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/minimize.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/num_int.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/plot_2d.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/plot_3d.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/plot_param_grid.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper/symbolic_BSpline.py +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper.egg-info/SOURCES.txt +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper.egg-info/dependency_links.txt +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper.egg-info/requires.txt +0 -0
- {ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: IBB_Helper
|
|
3
|
-
Version: 0.4.8.
|
|
3
|
+
Version: 0.4.8.dev7
|
|
4
4
|
Summary: Helper functions for symbolic math, matrix visualization, and plotting
|
|
5
5
|
Author-email: "University of Stuttgart, Institute for Structural Mechanics (IBB)" <mvs@ibb.uni-stuttgart.de>
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
@@ -166,9 +166,6 @@ def extend_plot(plot_list, dx=0, colors=None, labels=None, line_styles=None,
|
|
|
166
166
|
plot_max_x = float('-inf')
|
|
167
167
|
|
|
168
168
|
for trace in fig.data:
|
|
169
|
-
if trace.type == "surface":
|
|
170
|
-
combined_fig.add_trace(copy.deepcopy(trace))
|
|
171
|
-
continue
|
|
172
169
|
|
|
173
170
|
if hasattr(trace, 'x') and trace.x is not None:
|
|
174
171
|
x_data = np.array(trace.x)
|
|
@@ -177,7 +174,7 @@ def extend_plot(plot_list, dx=0, colors=None, labels=None, line_styles=None,
|
|
|
177
174
|
plot_max_x = max(plot_max_x, np.max(x_data))
|
|
178
175
|
|
|
179
176
|
# Calculate shift for this plot
|
|
180
|
-
if
|
|
177
|
+
if i==0:
|
|
181
178
|
x_shift = 0
|
|
182
179
|
else:
|
|
183
180
|
x_shift = prev_plot_max_x - plot_min_x + dx
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: IBB_Helper
|
|
3
|
-
Version: 0.4.8.
|
|
3
|
+
Version: 0.4.8.dev7
|
|
4
4
|
Summary: Helper functions for symbolic math, matrix visualization, and plotting
|
|
5
5
|
Author-email: "University of Stuttgart, Institute for Structural Mechanics (IBB)" <mvs@ibb.uni-stuttgart.de>
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ibb_helper-0.4.8.dev6 → ibb_helper-0.4.8.dev7}/src/IBB_Helper.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|