TAMSVIZ
Visualization and annotation tool for ROS
interaction.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include <Eigen/Dense>
7 
8 struct InteractionRay {
9  int x = 0;
10  int y = 0;
11  Eigen::Vector3d center = Eigen::Vector3d::Zero();
12  Eigen::Vector3d direction = Eigen::Vector3d::Zero();
13  Eigen::Vector3d point = Eigen::Vector3d::Zero();
14  Eigen::Vector3d projectToAxis(const Eigen::Vector3d &start,
15  const Eigen::Vector3d &direction) const;
16  Eigen::Vector3d projectPlane(const Eigen::Vector3d &point,
17  const Eigen::Vector3d &normal) const;
18  Eigen::Matrix4d view_matrix = Eigen::Matrix4d::Identity();
19  Eigen::Matrix4d projection_matrix = Eigen::Matrix4d::Identity();
20 };
21 
22 struct Interaction {
23  InteractionRay begin;
24  InteractionRay current;
25  InteractionRay previous;
26  bool finished = false;
27  bool pressed = false;
28  uint32_t id = 0;
29  Eigen::Vector3d projectToAxis(const Eigen::Vector3d &direction) const;
30  Eigen::Vector3d projectPlane(const Eigen::Vector3d &normal) const;
31 };