1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-09 23:45:42 +00:00

[ci skip] Fix source validation errors

This commit is contained in:
Oliver Booth 2022-07-08 13:08:24 +01:00
parent 2fb3eb77dd
commit 7231c41466
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
2 changed files with 5 additions and 3 deletions

View File

@ -191,7 +191,8 @@ public static partial class DebugEx
/// <see langword="true" /> if depth test should be applied; otherwise, <see langword="false" />. Passing
/// <see langword="true" /> will have the circle be obscured by objects closer to the camera.
/// </param>
public static void DrawCircle(in Circle circle, int segments, in Vector3 offset, in Color color, float duration, bool depthTest)
public static void DrawCircle(in Circle circle, int segments, in Vector3 offset, in Color color, float duration,
bool depthTest)
{
DrawCircle((CircleF)circle, segments, offset, color, duration, depthTest);
}
@ -301,7 +302,8 @@ public static partial class DebugEx
/// <see langword="true" /> if depth test should be applied; otherwise, <see langword="false" />. Passing
/// <see langword="true" /> will have the circle be obscured by objects closer to the camera.
/// </param>
public static void DrawCircle(in CircleF circle, int segments, in Vector3 offset, in Color color, float duration, bool depthTest)
public static void DrawCircle(in CircleF circle, int segments, in Vector3 offset, in Color color, float duration,
bool depthTest)
{
DrawPolyhedron(CreateCircle(circle.Radius, segments, Vector3.zero), offset, color, duration, depthTest);
}

View File

@ -74,7 +74,7 @@ public static class PointFExtensions
{
return point.IsOnLine(new LineF(start, end));
}
/// <summary>
/// Converts the current <see cref="PointF" /> to a <see cref="SizeF" />.
/// </summary>