Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jason Chemin
curves
Commits
d4dae98f
Commit
d4dae98f
authored
Aug 01, 2019
by
JasonChmn
Committed by
Pierre Fernbach
Sep 03, 2019
Browse files
[bezier_curve] Minor fix on variable name
parent
b785b362
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/curves/bezier_curve.h
View file @
d4dae98f
...
...
@@ -100,7 +100,7 @@ struct bezier_curve : public curve_abc<Time, Numeric, Safe, Point>
}
bezier_curve
(
const
bezier_curve
&
other
)
:
t
_min_
(
other
.
t
_min_
),
t
_max_
(
other
.
t
_max_
),
mult_T_
(
other
.
mult_T_
),
size_
(
other
.
size_
),
:
T
_min_
(
other
.
T
_min_
),
T
_max_
(
other
.
T
_max_
),
mult_T_
(
other
.
mult_T_
),
size_
(
other
.
size_
),
degree_
(
other
.
degree_
),
bernstein_
(
other
.
bernstein_
),
control_points_
(
other
.
control_points_
)
{}
...
...
Write
Preview
Supports
Markdown
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