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
Toggle navigation
Open sidebar
alta
alta
Commits
94b59066
Commit
94b59066
authored
Jul 22, 2016
by
Ludovic Courtès
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
data_brdf_slice: Mark internal fields and methods as private.
parent
d9c5fc1b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
sources/plugins/data_io/slice.cpp
sources/plugins/data_io/slice.cpp
+5
-2
No files found.
sources/plugins/data_io/slice.cpp
View file @
94b59066
...
...
@@ -70,14 +70,15 @@ ALTA_DLL_EXPORT data* load_data(std::istream& input, const arguments& args);
*
*/
class
BrdfSlice
:
public
data
{
public:
private:
const
int
_width
,
_height
,
_slice
;
vec
_max
,
_min
;
double
_phi
;
double
*
_data
;
bool
_reverse
;
public:
BrdfSlice
(
const
arguments
&
args
,
int
width
,
int
height
,
int
slice
,
double
*
content
)
...
...
@@ -219,6 +220,8 @@ class BrdfSlice : public data {
return
res
;
}
private:
// Get data size, e.g. the number of samples to fit
int
size
()
const
{
...
...
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