Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CAMP
campvis-public
Commits
f75772e3
Commit
f75772e3
authored
Jun 23, 2017
by
Jakob Weiss
Browse files
"core" change: color property interface fix
(cherry picked from commit ad722d98127144e0ff34523f210247a92f8dbb20)
parent
4465267b
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/properties/colorproperty.h
View file @
f75772e3
...
...
@@ -47,8 +47,8 @@ namespace campvis {
const
std
::
string
&
name
,
const
std
::
string
&
title
,
const
T
&
value
,
const
T
&
minValue
,
const
T
&
maxValue
,
const
T
&
minValue
=
T
(
0.0
f
)
,
const
T
&
maxValue
=
T
(
1.0
f
)
,
const
T
&
stepValue
=
T
(
0.01
f
));
static
const
std
::
string
loggerCat_
;
...
...
@@ -64,9 +64,9 @@ namespace campvis {
const
std
::
string
&
name
,
const
std
::
string
&
title
,
const
T
&
value
,
const
T
&
minValue
,
const
T
&
maxValue
,
const
T
&
stepValue
)
const
T
&
minValue
=
T
(
0.0
f
)
,
const
T
&
maxValue
=
T
(
1.0
f
)
,
const
T
&
stepValue
=
T
(
0.01
f
))
:
Vec4Property
(
name
,
title
,
value
,
minValue
,
maxValue
,
stepValue
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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