Skeletal Animation Multithread Face
|
Class SkeletalAnimation. More...
#include <skeletal_animation.h>
Public Member Functions | |
SkeletalAnimation () | |
Constructor. More... | |
void | initialize (igl::opengl::glfw::Viewer *viewer, Exoskeleton *left_exo, AnimatedHand *anim_hand, MenuHandler *menu_handler) |
Initialize animation. More... | |
bool | animation_loop (igl::opengl::glfw::Viewer &viewer) |
Animation loop callback. More... | |
Private Member Functions | |
void | setup_meshes (igl::opengl::glfw::Viewer &viewer) |
Setup meshes. More... | |
Private Attributes | |
std::string | m_hand_mesh_name |
Mesh filename. More... | |
std::string | m_hand_graph_name |
Skeleton graph filename. More... | |
std::string | m_hand_texture_name |
Texture name. More... | |
Exoskeleton * | m_left_exo |
Exoskeleton handler pointer. More... | |
AnimatedHand * | m_anim_hand |
Animated hand pointer. More... | |
MenuHandler * | m_menu_handler |
Menu handler pointer. More... | |
std::shared_ptr< Hand > | m_left_hand |
Left and right hand. More... | |
std::shared_ptr< Hand > | m_right_hand |
std::shared_ptr< Face > | m_face |
Face handler. More... | |
Eigen::Vector3d | m_left_origin = Eigen::Vector3d(1.0, 0.0, 0.0) |
Left hand origin. More... | |
Eigen::Vector3d | m_right_origin = Eigen::Vector3d(-1.0, 0.0, 0.0) |
Right hand origin. More... | |
bool | m_initialize_animation = 1 |
Start animation flag. More... | |
Class SkeletalAnimation.
This class implements the skeletal animation for the hand.
Definition at line 38 of file skeletal_animation.h.
|
inline |
bool SkeletalAnimation::animation_loop | ( | igl::opengl::glfw::Viewer & | viewer | ) |
Animation loop callback.
This is the main animation callback function. This is where the rendering is happening. The function is passed as a lambda function to the Viewer handler (see main.cpp).
viewer | Reference to the viewer handle. |
Definition at line 33 of file skeletal_animation.cpp.
void SkeletalAnimation::initialize | ( | igl::opengl::glfw::Viewer * | viewer, |
Exoskeleton * | left_exo, | ||
AnimatedHand * | anim_hand, | ||
MenuHandler * | menu_handler | ||
) |
Initialize animation.
Initializes skeletal animation by copying the input arguments to the member variables.
viewer | Pointer to the igl Viewer object. |
left_exo | Pointer to the left exoskeleton object. |
anim_hand | Pointer to the animated hand object. |
menu_handler | Pointer to menu handler object. |
Definition at line 11 of file skeletal_animation.cpp.
|
private |
Setup meshes.
This function setups the exoskeletons. First it initializes the serial communications and defines the hand shared pointers. It also generates the hand meshes and passes them to the viewer mesh list (or data_list). See how libigl handles multiple meshes at https://github.com/libigl/libigl/blob/main/tutorial/107_MultipleMeshes/main.cpp.
viewer | A reference to the viewer handle. |
Definition at line 77 of file skeletal_animation.cpp.
|
private |
Animated hand pointer.
Definition at line 74 of file skeletal_animation.h.
|
private |
Face handler.
Definition at line 83 of file skeletal_animation.h.
|
private |
Skeleton graph filename.
Definition at line 61 of file skeletal_animation.h.
|
private |
Mesh filename.
Definition at line 57 of file skeletal_animation.h.
|
private |
Texture name.
Definition at line 65 of file skeletal_animation.h.
|
private |
Start animation flag.
Definition at line 92 of file skeletal_animation.h.
|
private |
Exoskeleton handler pointer.
Definition at line 71 of file skeletal_animation.h.
|
private |
Left and right hand.
Definition at line 80 of file skeletal_animation.h.
|
private |
Left hand origin.
Definition at line 86 of file skeletal_animation.h.
|
private |
Menu handler pointer.
Definition at line 77 of file skeletal_animation.h.
|
private |
Definition at line 80 of file skeletal_animation.h.
|
private |
Right hand origin.
Definition at line 89 of file skeletal_animation.h.