mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
Bindings cleanup
- Replaced tabs with 4 spaces - Added comments to Raylib.cs
This commit is contained in:
parent
ec4f2f0472
commit
167a41f20d
@ -39,7 +39,7 @@ namespace Raylib
|
|||||||
|
|
||||||
[MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = Raylib.PHYSAC_MAX_VERTICES)]
|
[MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = Raylib.PHYSAC_MAX_VERTICES)]
|
||||||
public Vector2[] positions; // Polygon vertex positions vectors
|
public Vector2[] positions; // Polygon vertex positions vectors
|
||||||
|
|
||||||
[MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = Raylib.PHYSAC_MAX_VERTICES)]
|
[MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = Raylib.PHYSAC_MAX_VERTICES)]
|
||||||
public Vector2[] normals; // Polygon vertex normals vectors
|
public Vector2[] normals; // Polygon vertex normals vectors
|
||||||
}
|
}
|
||||||
@ -86,7 +86,7 @@ namespace Raylib
|
|||||||
public PhysicsBodyData bodyB; // Manifold second physics body reference
|
public PhysicsBodyData bodyB; // Manifold second physics body reference
|
||||||
public float penetration; // Depth of penetration from collision
|
public float penetration; // Depth of penetration from collision
|
||||||
public Vector2 normal; // Normal direction vector from 'a' to 'b'
|
public Vector2 normal; // Normal direction vector from 'a' to 'b'
|
||||||
|
|
||||||
[MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 2)]
|
[MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 2)]
|
||||||
public Vector2[] contacts; // Points of contact during collision
|
public Vector2[] contacts; // Points of contact during collision
|
||||||
|
|
||||||
|
@ -188,14 +188,14 @@ namespace Raylib
|
|||||||
LISTVIEW_TEXT_COLOR_DISABLED
|
LISTVIEW_TEXT_COLOR_DISABLED
|
||||||
}
|
}
|
||||||
|
|
||||||
// GUI controls state
|
// GUI controls state
|
||||||
public enum GuiControlState
|
public enum GuiControlState
|
||||||
{
|
{
|
||||||
DISABLED = 0,
|
DISABLED = 0,
|
||||||
NORMAL,
|
NORMAL,
|
||||||
FOCUSED,
|
FOCUSED,
|
||||||
PRESSED
|
PRESSED
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@ -203,7 +203,7 @@ namespace Raylib
|
|||||||
{
|
{
|
||||||
#region Raylib-cs Variables
|
#region Raylib-cs Variables
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Raylib-cs Functions
|
#region Raylib-cs Functions
|
||||||
|
|
||||||
|
1688
Bindings/Raylib.cs
1688
Bindings/Raylib.cs
File diff suppressed because it is too large
Load Diff
@ -457,7 +457,7 @@ namespace Raylib
|
|||||||
|
|
||||||
// Calculate vector length
|
// Calculate vector length
|
||||||
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern float Vector3Length(Vector3 v);
|
public static extern float Vector3Length(Vector3 v);
|
||||||
|
|
||||||
// Calculate two vectors dot product
|
// Calculate two vectors dot product
|
||||||
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
|
||||||
@ -675,7 +675,7 @@ namespace Raylib
|
|||||||
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern Quaternion QuaternionTransform(Quaternion q, Matrix mat);
|
public static extern Quaternion QuaternionTransform(Quaternion q, Matrix mat);
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,7 @@ namespace Raylib
|
|||||||
{
|
{
|
||||||
#region Raylib-cs Variables
|
#region Raylib-cs Variables
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Raylib-cs Functions
|
#region Raylib-cs Functions
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user