This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
Setting Up Properties
照明
Landscape Tool
Sandworm
使用编辑器工具执行特定任务
Extending Editor Functionality
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
创建内容
Content Optimization
Materials
Art Samples
Tutorials
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

Unigine::Plugins::LeapMotion::Arm Struct

Header: #include <UnigineLeapMotion.h>
Notice
LeapMotion plugin must be loaded.

This structure represents a forearm. All coordinates are relative to the origin of the Leap Motion coordinate system.

The Arm structure is declared as follows:

Source code (C++)
struct Arm
{
	float width;
	int is_valid;
	Unigine::Math::vec3 direction;
	Unigine::Math::vec3 elbow_position;
	Unigine::Math::vec3 wrist_position;
	Unigine::Math::vec3 center;
	Unigine::Math::mat4 basis;
};

LeapMotionArm Class

Members


float getWidth ( ) #

Returns the width of the forearm, in meters.

Return value

Width of the forearm, in meters.

vec3 getElbowPosition ( ) #

Returns the coordinates of the elbow position.
Notice
All coordinates are relative to the origin of the Leap Motion coordinate system.

Return value

Coordinates of the elbow position.

vec3 getWristPosition ( ) #

Returns the coordinates of the end of the bone, closest to the finger tip (distal).
Notice
All coordinates are relative to the origin of the Leap Motion coordinate system.

Return value

Coordinates of the wrist position.

vec3 getCenter ( ) #

Returns the coordinates of the center of the forearm.
Notice
All coordinates are relative to the origin of the Leap Motion coordinate system.

Return value

Coordinates of the center of the forearm.

vec3 getDirection ( ) #

Returns the normalized direction in which the arm is pointing (from elbow to wrist).
Notice
All coordinates are relative to the origin of the Leap Motion coordinate system.

Return value

Normalized direction in which the arm is pointing (from elbow to wrist).

mat4 getBasis ( ) #

Returns the orthonormal basis vectors for the arm as a Matrix.

Basis vectors specify the orientation of the arm bone:

  • X - Perpendicular to the longitudinal axis of the arm bone; exits the arm laterally through the sides of the wrist.
  • Y (or up vector) - Perpendicular to the longitudinal axis of the arm bone; exits the top and bottom of the arm. Increases in the upward direction.
  • Z - Aligned with the longitudinal axis of the arm bone. Increases toward the wrist.

The bases provided for the right arm use the right-hand rule; those for the left arm use the left-hand rule. Thus, the positive direction of the x-basis is to the right for the right arm and to the left for the left arm. You can change from right-hand to left-hand rule by multiplying the z basis vector by -1.

You can use the basis vectors for such purposes as measuring complex finger poses and skeletal animation.

Notice
Converting the basis vectors directly into a quaternion representation is not mathematically valid. If you use quaternions, create them from the derived rotation matrix not directly from the bases.

Return value

Orthonormal basis vectors for the arm bone as a Matrix.

int isValid ( ) #

Returns a value indicating if the arm contains valid tracking data.

Return value

1 if the arm contains valid tracking data; otherwise, 0.
Last update: 2021-04-29
Build: ()