Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
curves
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jason Chemin
curves
Commits
af6be0e1
Commit
af6be0e1
authored
5 years ago
by
JasonChmn
Browse files
Options
Downloads
Patches
Plain Diff
Modify doc of compute_primitive in bezier_curve
parent
0a905463
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#4150
failed
5 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/curve/bezier_curve.h
+3
-3
3 additions, 3 deletions
include/curve/bezier_curve.h
with
3 additions
and
3 deletions
include/curve/bezier_curve.h
+
3
−
3
View file @
af6be0e1
...
...
@@ -177,10 +177,10 @@ struct bezier_curve : public curve_abc<Time, Numeric, Dim, Safe, Point>
}
/// \brief Compute the primitive of the curve at order N.
/// Computes the primitive at order N
, \f$X(t)\f$
of bezier curve of parametric equation x(t)
such as
/// \f$\frac{dX(t)}{dt} = x(t)\f$.
/// Computes the primitive at order N of bezier curve of parametric equation
\f$
x(t)
\f$. At order \f$N=1\f$,
///
the primitve \f$X(t)\f$ of \f$x(t)\f$ is such as
\f$\frac{dX(t)}{dt} = x(t)\f$.
/// \param order : order of the primitive.
/// \return Primitive
X
(t).
/// \return Primitive
of x
(t).
bezier_curve_t
compute_primitive
(
const
std
::
size_t
order
)
const
{
if
(
order
==
0
)
return
*
this
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment