Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
330fcba9
Commit
330fcba9
authored
4 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Make objpose::Box a class to allow it being null
parent
f84a2c0a
No related branches found
No related tags found
1 merge request
!75
Make box optional in object pose observer
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/interface/objectpose/object_pose_types.ice
+8
-4
8 additions, 4 deletions
source/RobotAPI/interface/objectpose/object_pose_types.ice
with
8 additions
and
4 deletions
source/RobotAPI/interface/objectpose/object_pose_types.ice
+
8
−
4
View file @
330fcba9
...
...
@@ -48,13 +48,17 @@ module armarx
sequence
<
ObjectID
>
ObjectIDSeq
;
struct
AABB
class
AABB
{
Vector3Base
center
;
Vector3Base
extents
;
};
struct
Box
/**
* @brief A 3D box.
* Box is a a class to allow it being null.
*/
class
Box
{
Vector3Base
position
;
QuaternionBase
orientation
;
...
...
@@ -84,7 +88,7 @@ module armarx
/// Source timestamp.
long
timestampMicroSeconds
=
-
1
;
/// Object bounding box in object's local coordinate frame.
/// Object bounding box in object's local coordinate frame.
May be null.
Box
localOOBB
;
};
sequence
<
ProvidedObjectPose
>
ProvidedObjectPoseSeq
;
...
...
@@ -114,7 +118,7 @@ module armarx
/// Source timestamp.
long
timestampMicroSeconds
=
-
1
;
/// Object bounding box in object's local coordinate frame.
/// Object bounding box in object's local coordinate frame.
May be null.
Box
localOOBB
;
};
sequence
<
ObjectPose
>
ObjectPoseSeq
;
...
...
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