【VR】Leap Motion 官网文档 LeapUnityExtensions (LeapUnity扩展)

前言

Leap Motion Unity部分的API进入最后冲刺阶段,不算派生的小类,本篇是倒数第二篇。

不得不忠谢这合作的力量。

原译文链接:http://blog.csdn.net/qq_18408937/article/details/47452299

LeapUnityExtensions类提供了从Unity坐标系到Leap坐标系的各种转换功能。

LeapUnityExtensions LeapUnity扩展

class Leap:UnityVectorExtension  Leap类(继承UnityVectorExtension)

Extends the Leap Motion Vector class to converting points and directions from the Leap Motion coordinate system into the Unity coordinate system.

继承Leap Motion Vector类来将点和方向从LeapMotion坐标系转换到Unity坐标系。

Public Members 公共变量

const float INPUT_SCALE float常量 输入缩放比例

Scale factor from Leap units (millimeters) to Unity units (meters).

从Leap(单位:毫米)到Unity(单位:米)的缩放系数。

Public Static Functions 全局静态方法 

Vector3 ToUnity(this Vector leap_vector, bool mirror = false)  转换至Unity模式

Converts a direction vector from Leap to Unity.

将一个方向向量从Leap模式转换到Unity模式。

(Does not scale.)

(不缩放。)

Changes from the Leap Motion right-hand coordinate convention to the Unity left-handed convention by negating the z-coordinate.

通过忽略Z轴的方式将LeapMotion的右手坐标系变为Unity的左手坐标系。

Parameters 参数

? mirror - If true, the vector is reflected along the z axis. 镜像:如果是true,则向量沿Z轴翻转。

? leap_vector - the Leap.Vector object to convert.  Leap向量: Leap向量的对象转换。

Vector3 ToUnityScaled(this Vector leap_vector, bool mirror = false) 转换至Unity模式并进行缩放

Converts a point from Leap to Unity.

将一个点从Leap模式转换至Unity模式。

(Scales.)

(保留缩放。)

Changes from the Leap Motion right-hand coordinate convention to the Unity left-handed convention by negating the z-coordinate. Also scales from Leap Motion millimeter units to Unity meter units by multiplying the vector by .001.

通过忽略Z轴的方式将LeapMotion的右手坐标系变为Unity的左手坐标系。通过向量乘0.001的方式将LeapMotion的毫米单位转换为Unity的米单位。

Parameters 参数

? mirror - If true, the vector is reflected along the z axis.镜像:如果是true,则向量沿Z轴翻转。

? leap_vector - the Leap.Vector object to convert.Leap向量: Leap向量的对象转换。

Public Static Attributes 全局静态属性

readonly Vector3 Z_FLIP  Vector3 只读属性 Z翻转轴

Constant used when converting from right-handed to left-handed axes.

从右手转换到左手时不变的轴

class Leap::UnityMatrixExtension Leap类(继承UnityMatrixExtension)

Extends the Leap Mition Matrix class to convert Leap Matrix objects to to Unity Quaternion rotations and translations.

继承Leap Mition Matrix类将Leap矩阵对象装换成Unity四元数旋转和位移。

Public Static Functions 全局静态方法

Quaternion Rotation(this Matrix matrix, bool mirror = false)  旋转

Converts a Leap Matrix object representing a rotation to a Unity Quaternion.

将一个代表角度的Leap矩阵对象转换成Unity四元数。

Parameters 参数

? matrix - The Leap.Matrix to convert. 矩阵:Leap矩阵转换

? mirror - If true, the operation is reflected along the z axis.镜像:如果是true,则向量沿Z轴翻转。

Vector3 Translation(this Matrix matrix, bool mirror = false) 位移

Converts a Leap Matrix object representing a translation to a Unity Vector3 object.

将一个代表位移的Leap矩阵对象转换成Unity向量对象。

Parameters 参数

? matrix - The Leap.Matrix to convert.矩阵:Leap矩阵转换

? mirror - If true, the operation is reflected along the z axis.镜像:如果是true,则向量沿Z轴翻转。

Public Static Attributes 全局静态属性

readonly Vector LEAP_FORWARD 只读属性 Vector Leap前方

Forward in the Leap coordinate system.

在Leap坐标系中的前方。

readonly Vector LEAP_ORIGIN 只读属性 Vector Leap原点

The origin point in the Leap coordinate system.

在Leap坐标系中的原点。

readonly Vector LEAP_UP 只读属性 Vector Leap上方

Up in the Leap coordinate system.

在Leap坐标系中的上方。

————————————————————————————————————————————

更多参考:

【VR】Leap Motion 官网文档 脚本参考(目录)

(版权声明:本篇为Leap Motion 官网文档译文,版权归Leap Motion 官网所有,图文内容仅供学习使用。)

时间: 2024-11-06 17:08:39

【VR】Leap Motion 官网文档 LeapUnityExtensions (LeapUnity扩展)的相关文章

【VR】Leap Motion 官网文档 脚本参考(目录)

前言: 本系列译文是为迎合Unity VR的热潮与大家的学习需要,推出的针对Unity方向的Leap Motion官方文档中英对照翻译. 本篇第四篇 <脚本参考> 以目录链接的形式列出了Leap Motion为Unity提供的核心资源包中所包含的脚本定义的类. 关于每个类的详细内容后续献上,敬请期待. 英文原文网址:https://developer.leapmotion.com/documentation/unity/unity/Unity_Classes.html 译文首发&持续更

【VR】Leap Motion 官网文档 Unity插件概述

前言: Leap Motion的官网文档已经有不少的热心网友参与了翻译,但没有覆盖官网文档的全部. 为迎合Unity VR的热潮与大家的学习需要,本博客将推出针对Unity方向的官方文档翻译系列. 本篇主要对Leap Motion的Unity插件及坐标系系统进行简述. 英文原文网址:https://developer.leapmotion.com/documentation/unity/unity/Unity_Overview.html 译文首发&持续更新:http://blog.csdn.ne

【VR】Leap Motion 官网文档 HandModel(手部模型)

前言: 本系列译文是为迎合Unity VR的热潮与大家的学习需要,推出的针对Unity方向的Leap Motion官方文档中英对照翻译. 本篇为第六篇 <HandModel(手部模型)> ,该类主要用于连接控制器和手部模型,以及处理手臂.肘部.手掌.手指的位置和角度等信息. Handmodel is the base class for all the other hand scripts. If you are creating your own hands and need a custo

【VR】Leap Motion 官网文档 FingerModel (手指模型)

前言: 感谢关注和支持这个Leap Motion系列翻译的朋友们,很抱歉由于工作原因很久没有更新,今后这个翻译还会继续(除非官方直接给出中文文档).本篇献给大家的是 <FingerModel (手指模型)> ,该类主要用于手指模型的创建.更新.信息获取及控制等. FingerModel?  手指模型类 FingerModel is the base class for all the other finger scripts. If you are creating your own fing

【VR】Leap Motion 官网文档 HandController(手部控制器)

前言: 本系列译文是为迎合Unity VR的热潮与大家的学习需要,推出的针对Unity方向的Leap Motion官方文档中英对照翻译. 本篇第五篇 <HandController(手部控制器)> 介绍了HandController(手部控制器)预设体与HandController脚本组件使用,以及HandController类中定义的各个公共属性与方法. HandController  手部控制器 The HandController script is attached to the Ha

【VR】Leap Motion 官网文档 DisconnectionNotice (未连接通知)

前言 不能不说~  新搭档真心给力!翻译的节奏很嗨.这两篇本人也简单参与了审校,姑且算是合作的吧. VR热逐渐趋于理智,但软件对VR硬设的探索和发挥依然停留在初始阶段.相对而言,一些VR硬设文档缺乏中文文档,为广大开发者的学习带来阻碍和不便.本系列译文就是在这样的背景下诞生的,而首先推出的是价位上人手可及的 Leap Motion系列. Leap Motion 的 DisconnectionNotice类会在没有连接时以视觉形式反馈给用户,以便让重新连接. 原译文链接:http://blog.c

【VR】Leap Motion 官网文档 ToolModel (工具模型)

前言 非常开心的是,Leap Motion官方文档的翻译工作有了新的伙伴加入,特此转发过来. 原译文链接:http://blog.csdn.net/qq_18408937/article/details/47373879 ToolModel  工具模型 ToolModel updates a model's position and orientation based on a tracked tool. Compared to hands, tools are very simple and

【VR】Leap Motion 官网文档 ConfidenceTransparency (确定性透明处理)

前言 由于新搭档的加入,翻译的工作进展快了许多. 本篇是Unity引擎中Leap Motion工具模型类中关于透明处理的类,希望对大家有帮助. 原译文链接:http://blog.csdn.net/qq_18408937/article/details/47382423 ConfidenceTransparency   确定性透明处理 Sets a hand's opacity based on its current confidence rating. 基于手部的当前确定性来设置它的透明度.

【VR】Leap Motion 官网文档 MagneticPinch (磁性捏取)

前言 至此LeapMotion的Unity主体部分的翻译全部结束,同时本篇也是搭档的第十篇博客. 为了纪念这里程碑式的时刻,现将微信二维码头像换成合照 *^-^* 原译文链接:http://blog.csdn.net/qq_18408937/article/details/47452343 磁性捏取类是为了应对体感输入的一种有效方式,为了增强用户体验,让操作更容易比让操作更拟真往往更重要. MagneticPinch 磁性捏取 Attach this script to a RigidHand