mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-05 19:39:21 +00:00
Logic rewrite
Update to LeapCSharp 5.13.1 Not tested in VR
This commit is contained in:
parent
a41f17af82
commit
3609500959
21 changed files with 566 additions and 103 deletions
8
ml_lme/vendor/LeapCSharp/CSharpExtensions.cs
vendored
8
ml_lme/vendor/LeapCSharp/CSharpExtensions.cs
vendored
|
@ -16,6 +16,14 @@ namespace Leap
|
|||
/// </summary>
|
||||
public static class CSharpExtensions
|
||||
{
|
||||
public static class Constants
|
||||
{
|
||||
public const float PI = 3.1415926536f;
|
||||
public const float DEG_TO_RAD = 0.0174532925f;
|
||||
public const float RAD_TO_DEG = 57.295779513f;
|
||||
public const float EPSILON = 1.192092896e-07f;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Compares whether two floating point numbers are within an epsilon value of each other.
|
||||
/// @since 3.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue