Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DocFX/docs/libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void DropWeapon()

#### Quaternions

Although not requiered, some elements can be rotated using [Quaternions](https://docs.microsoft.com/en-us/dotnet/api/system.numerics.quaternion?view=netframework-4.7.2) instead of regular Euler angles ([Vector3](https://docs.microsoft.com/en-us/dotnet/api/system.numerics.vector3?view=netframework-4.7.2)). Using quaternions is in some cases even the only solution to complex rotational problems. The downside of using Euler angles is mainly that they are prone to [Gimbal lock](https://en.wikipedia.org/wiki/Gimbal_lock), something that some may have experienced in plain MTA already. Slipe allows you to get and set rotations using Quaternions if desired.
Although not required, some elements can be rotated using [Quaternions](https://docs.microsoft.com/en-us/dotnet/api/system.numerics.quaternion?view=netframework-4.7.2) instead of regular Euler angles ([Vector3](https://docs.microsoft.com/en-us/dotnet/api/system.numerics.vector3?view=netframework-4.7.2)). Using quaternions is in some cases even the only solution to complex rotational problems. The downside of using Euler angles is mainly that they are prone to [Gimbal lock](https://en.wikipedia.org/wiki/Gimbal_lock), something that some may have experienced in plain MTA already. Slipe allows you to get and set rotations using Quaternions if desired.



Expand Down Expand Up @@ -276,4 +276,4 @@ Output information to the MTA debug section using the [System.Diagnostics.Debug]

- [WriteLine(Object)](https://docs.microsoft.com/en-us/dotnet/api/system.diagnostics.debug.writeline?view=netframework-4.7.2#System_Diagnostics_Debug_WriteLine_System_Object_)

- [WriteLineIf(Boolean, Object)](https://docs.microsoft.com/en-us/dotnet/api/system.diagnostics.debug.writelineif?view=netframework-4.7.2#System_Diagnostics_Debug_WriteLineIf_System_Boolean_System_Object_)
- [WriteLineIf(Boolean, Object)](https://docs.microsoft.com/en-us/dotnet/api/system.diagnostics.debug.writelineif?view=netframework-4.7.2#System_Diagnostics_Debug_WriteLineIf_System_Boolean_System_Object_)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

?