Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ufdvw
ImmersiveAnalytics
Commits
75b05553
Commit
75b05553
authored
Apr 21, 2019
by
Jan Kremer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added little safety feature for debugging.
parent
0ecf4154
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
Source/ImmersiveAnalytics/Plot3D.cpp
Source/ImmersiveAnalytics/Plot3D.cpp
+2
-6
No files found.
Source/ImmersiveAnalytics/Plot3D.cpp
View file @
75b05553
...
...
@@ -37,15 +37,11 @@ void APlot3D::InitPoints()
{
UHDF5Library
::
ImportData
(
FileName
,
X
,
Y
,
Z
,
U
,
V
,
W
);
int32
Num
;
if
(
OverridePointCount
)
int32
Num
=
X
.
Num
()
;
if
(
OverridePointCount
&&
PointCount
<=
Num
)
{
Num
=
PointCount
;
}
else
{
Num
=
X
.
Num
();
}
IsBrushed
=
TArray
<
bool
>
();
IsBrushed
.
Init
(
false
,
Num
);
...
...
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