Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Elijah Andrews
Cavitation-Analysis
Commits
831835f0
Commit
831835f0
authored
Oct 22, 2020
by
Elijah Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added axis line scaling.
parent
c3f60fdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
common/util/plotting_utils.py
common/util/plotting_utils.py
+1
-1
No files found.
common/util/plotting_utils.py
View file @
831835f0
...
...
@@ -22,7 +22,7 @@ def initialize_plt(font_size=10, line_scale=1, capsize=3):
font
=
{
'family'
:
'serif'
,
'size'
:
font_size
,
'serif'
:
[
'cmr10'
]}
plt
.
rc
(
'font'
,
**
font
)
plt
.
rc
(
'lines'
,
linewidth
=
line_scale
,
markersize
=
3
*
line_scale
)
plt
.
rc
(
'axes'
,
linewidth
=
0.5
)
plt
.
rc
(
'axes'
,
linewidth
=
0.5
*
line_scale
)
plt
.
rc
(
'patch'
,
linewidth
=
0.5
*
line_scale
)
plt
.
rc
(
'errorbar'
,
capsize
=
capsize
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment