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:
parent
2fb3eb77dd
commit
7231c41466
@ -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);
|
||||
}
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user