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
Guilhem Saurel
ndcurves
Commits
3f6dd5db
Commit
3f6dd5db
authored
Apr 12, 2019
by
JasonChmn
Browse files
Add comments for end of namespace
parent
a13f6d14
Changes
10
Hide whitespace changes
Inline
Side-by-side
include/hpp/curve/bezier_curve.h
View file @
3f6dd5db
...
...
@@ -364,6 +364,6 @@ struct bezier_curve : public curve_abc<Time, Numeric, Dim, Safe, Point>
return
bezier_curve_t
(
ts
.
begin
(),
ts
.
end
(),
T
);
}
};
}
}
// namespace curve
#endif //_CLASS_BEZIERCURVE
include/hpp/curve/bezier_polynom_conversion.h
View file @
3f6dd5db
...
...
@@ -67,6 +67,6 @@ Bezier from_polynom(const Polynom& polynom)
typedef Bezier::cit_point_t cit_point_t;
typedef Bezier::bezier_curve_t bezier_curve_t;
}*/
}
}
// namespace curve
#endif //_BEZIER_POLY_CONVERSION
include/hpp/curve/cubic_spline.h
View file @
3f6dd5db
...
...
@@ -41,6 +41,6 @@ polynom<Time,Numeric,Dim,Safe,Point,T_Point> create_cubic(Point const& a, Point
T_Point
coeffs
=
make_cubic_vector
<
Point
,
T_Point
>
(
a
,
b
,
c
,
d
);
return
polynom
<
Time
,
Numeric
,
Dim
,
Safe
,
Point
,
T_Point
>
(
coeffs
.
begin
(),
coeffs
.
end
(),
min
,
max
);
}
}
}
// namespace curve
#endif //_STRUCT_CUBICSPLINE
include/hpp/curve/curve_abc.h
View file @
3f6dd5db
...
...
@@ -63,6 +63,6 @@ struct curve_abc : std::unary_function<Time, Point>
/*Helpers*/
};
}
}
// namespace curve
#endif //_STRUCT_CURVE_ABC
include/hpp/curve/curve_constraint.h
View file @
3f6dd5db
...
...
@@ -32,5 +32,5 @@ struct curve_constraints
point_t
end_vel
;
point_t
end_acc
;
};
}
}
// namespace curve
#endif //_CLASS_CUBICZEROVELACC
include/hpp/curve/exact_cubic.h
View file @
3f6dd5db
...
...
@@ -198,6 +198,6 @@ struct exact_cubic : public curve_abc<Time, Numeric, Dim, Safe, Point>
t_spline_t
subSplines_
;
// const
/*Attributes*/
};
}
}
// namespace curve
#endif //_CLASS_EXACTCUBIC
include/hpp/curve/polynom.h
View file @
3f6dd5db
...
...
@@ -199,6 +199,6 @@ struct polynom : public curve_abc<Time, Numeric, Dim, Safe, Point>
return
res
;
}
};
//class polynom
}
}
// namespace curve
#endif //_STRUCT_POLYNOM
include/hpp/curve/quintic_spline.h
View file @
3f6dd5db
...
...
@@ -43,6 +43,6 @@ polynom<Time,Numeric,Dim,Safe,Point,T_Point> create_quintic(Point const& a, Poin
T_Point
coeffs
=
make_quintic_vector
<
Point
,
T_Point
>
(
a
,
b
,
c
,
d
,
e
,
f
);
return
polynom
<
Time
,
Numeric
,
Dim
,
Safe
,
Point
,
T_Point
>
(
coeffs
.
begin
(),
coeffs
.
end
(),
min
,
max
);
}
}
}
// namespace curve
#endif //_STRUCT_QUINTIC_SPLINE
include/hpp/curve/spline_deriv_constraint.h
View file @
3f6dd5db
...
...
@@ -137,6 +137,6 @@ struct spline_deriv_constraint : public exact_cubic<Time, Numeric, Dim, Safe, Po
private:
/* Constructors - destructors */
};
}
}
// namespace curve
#endif //_CLASS_CUBICZEROVELACC
python/spline_python.cpp
View file @
3f6dd5db
...
...
@@ -320,4 +320,4 @@ BOOST_PYTHON_MODULE(curves)
}
}
// namespace
splin
e
}
// namespace
curv
e
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