Source code for sym.ops.pose2.lie_group_ops

# -----------------------------------------------------------------------------
# This file was autogenerated by symforce from template:
#     ops/CLASS/lie_group_ops.py.jinja
# Do NOT modify by hand.
# -----------------------------------------------------------------------------

import math
import typing as T

import numpy

import sym  # pylint: disable=useless-suppression,unused-import


[docs]class LieGroupOps(object): """ Python LieGroupOps implementation for :py:class:`symforce.geo.pose2.Pose2`. """
[docs] @staticmethod def from_tangent(vec, epsilon): # type: (numpy.ndarray, float) -> sym.Pose2 # Total ops: 2 # Input arrays if vec.shape == (3,): vec = vec.reshape((3, 1)) elif vec.shape != (3, 1): raise IndexError( "vec is expected to have shape (3, 1) or (3,); instead had shape {}".format( vec.shape ) ) # Intermediate terms (0) # Output terms _res = [0.0] * 4 _res[0] = math.cos(vec[0, 0]) _res[1] = math.sin(vec[0, 0]) _res[2] = vec[1, 0] _res[3] = vec[2, 0] return sym.Pose2.from_storage(_res)
[docs] @staticmethod def to_tangent(a, epsilon): # type: (sym.Pose2, float) -> numpy.ndarray # Total ops: 5 # Input arrays _a = a.data # Intermediate terms (0) # Output terms _res = numpy.zeros(3) _res[0] = math.atan2( _a[1], _a[0] + epsilon * ((0.0 if _a[0] == 0 else math.copysign(1, _a[0])) + 0.5) ) _res[1] = _a[2] _res[2] = _a[3] return _res
[docs] @staticmethod def retract(a, vec, epsilon): # type: (sym.Pose2, numpy.ndarray, float) -> sym.Pose2 # Total ops: 10 # Input arrays _a = a.data if vec.shape == (3,): vec = vec.reshape((3, 1)) elif vec.shape != (3, 1): raise IndexError( "vec is expected to have shape (3, 1) or (3,); instead had shape {}".format( vec.shape ) ) # Intermediate terms (2) _tmp0 = math.sin(vec[0, 0]) _tmp1 = math.cos(vec[0, 0]) # Output terms _res = [0.0] * 4 _res[0] = _a[0] * _tmp1 - _a[1] * _tmp0 _res[1] = _a[0] * _tmp0 + _a[1] * _tmp1 _res[2] = _a[2] + vec[1, 0] _res[3] = _a[3] + vec[2, 0] return sym.Pose2.from_storage(_res)
[docs] @staticmethod def local_coordinates(a, b, epsilon): # type: (sym.Pose2, sym.Pose2, float) -> numpy.ndarray # Total ops: 13 # Input arrays _a = a.data _b = b.data # Intermediate terms (1) _tmp0 = _a[0] * _b[0] + _a[1] * _b[1] # Output terms _res = numpy.zeros(3) _res[0] = math.atan2( _a[0] * _b[1] - _a[1] * _b[0], _tmp0 + epsilon * ((0.0 if _tmp0 == 0 else math.copysign(1, _tmp0)) + 0.5), ) _res[1] = -_a[2] + _b[2] _res[2] = -_a[3] + _b[3] return _res
[docs] @staticmethod def interpolate(a, b, alpha, epsilon): # type: (sym.Pose2, sym.Pose2, float, float) -> sym.Pose2 # Total ops: 26 # Input arrays _a = a.data _b = b.data # Intermediate terms (4) _tmp0 = _a[0] * _b[0] + _a[1] * _b[1] _tmp1 = alpha * math.atan2( _a[0] * _b[1] - _a[1] * _b[0], _tmp0 + epsilon * ((0.0 if _tmp0 == 0 else math.copysign(1, _tmp0)) + 0.5), ) _tmp2 = math.sin(_tmp1) _tmp3 = math.cos(_tmp1) # Output terms _res = [0.0] * 4 _res[0] = _a[0] * _tmp3 - _a[1] * _tmp2 _res[1] = _a[0] * _tmp2 + _a[1] * _tmp3 _res[2] = _a[2] + alpha * (-_a[2] + _b[2]) _res[3] = _a[3] + alpha * (-_a[3] + _b[3]) return sym.Pose2.from_storage(_res)