Skip to content

Operator + between two CartesianPose is not commutative #27

@buschbapti

Description

@buschbapti

Because of the nature of the quaternion operation behind the operator+, the operation is not commutative which is slightly weird for an addition. It can lead to weird errors such as:

current_pose = dt * twist + current_pose;

will not lead to desired behavior when

current_pose = current_pose + dt * twist;

does (see #26). This can be a behavior we have to accept but then make super clear that there are differences between them.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions