Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
ndcurves
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
loco-3d
ndcurves
Commits
c9539269
Commit
c9539269
authored
5 years ago
by
Pierre Fernbach
Browse files
Options
Downloads
Patches
Plain Diff
[Python] fix mistake in binding of piecewise_se3 serialization methods
parent
ba4fd07f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python/curves_python.cpp
+6
-6
6 additions, 6 deletions
python/curves_python.cpp
with
6 additions
and
6 deletions
python/curves_python.cpp
+
6
−
6
View file @
c9539269
...
...
@@ -766,17 +766,17 @@ class_<piecewise_SE3_curve_t, bases<curve_abc_t> >("piecewise_SE3_curve", init<>
"Append a new linear SE3 curve at the end of the piecewise curve, defined between self.max() "
"and time and connecting exactly self(self.max()) and end"
,
args
(
"self"
,
"end"
,
"time"
))
.
def
(
"saveAsText"
,
&
piecewise_
bezier
_curve_t
::
saveAsText
<
piecewise_
bezier
_curve_t
>
,
bp
::
args
(
"filename"
),
.
def
(
"saveAsText"
,
&
piecewise_
SE3
_curve_t
::
saveAsText
<
piecewise_
SE3
_curve_t
>
,
bp
::
args
(
"filename"
),
"Saves *this inside a text file."
)
.
def
(
"loadFromText"
,
&
piecewise_
bezier
_curve_t
::
loadFromText
<
piecewise_
bezier
_curve_t
>
,
bp
::
args
(
"filename"
),
.
def
(
"loadFromText"
,
&
piecewise_
SE3
_curve_t
::
loadFromText
<
piecewise_
SE3
_curve_t
>
,
bp
::
args
(
"filename"
),
"Loads *this from a text file."
)
.
def
(
"saveAsXML"
,
&
piecewise_
bezier
_curve_t
::
saveAsXML
<
piecewise_
bezier
_curve_t
>
,
.
def
(
"saveAsXML"
,
&
piecewise_
SE3
_curve_t
::
saveAsXML
<
piecewise_
SE3
_curve_t
>
,
bp
::
args
(
"filename"
,
"tag_name"
),
"Saves *this inside a XML file."
)
.
def
(
"loadFromXML"
,
&
piecewise_
bezier
_curve_t
::
loadFromXML
<
piecewise_
bezier
_curve_t
>
,
.
def
(
"loadFromXML"
,
&
piecewise_
SE3
_curve_t
::
loadFromXML
<
piecewise_
SE3
_curve_t
>
,
bp
::
args
(
"filename"
,
"tag_name"
),
"Loads *this from a XML file."
)
.
def
(
"saveAsBinary"
,
&
piecewise_
bezier
_curve_t
::
saveAsBinary
<
piecewise_
bezier
_curve_t
>
,
bp
::
args
(
"filename"
),
.
def
(
"saveAsBinary"
,
&
piecewise_
SE3
_curve_t
::
saveAsBinary
<
piecewise_
SE3
_curve_t
>
,
bp
::
args
(
"filename"
),
"Saves *this inside a binary file."
)
.
def
(
"loadFromBinary"
,
&
piecewise_
bezier
_curve_t
::
loadFromBinary
<
piecewise_
bezier
_curve_t
>
,
bp
::
args
(
"filename"
),
.
def
(
"loadFromBinary"
,
&
piecewise_
SE3
_curve_t
::
loadFromBinary
<
piecewise_
SE3
_curve_t
>
,
bp
::
args
(
"filename"
),
"Loads *this from a binary file."
)
#ifdef CURVES_WITH_PINOCCHIO_SUPPORT
.
def
(
"evaluateAsSE3"
,
&
piecewiseSE3ReturnPinocchio
,
"Evaluate the curve at the given time. Return as a pinocchio.SE3 object"
,
...
...
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