mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-09 22:55:42 +00:00
docs/perf: throw for null input
This commit is contained in:
parent
3d69cf362d
commit
ceaa254d7a
@ -206,8 +206,14 @@ public static partial class DebugUtility
|
|||||||
/// <see langword="true" /> if depth test should be applied; otherwise, <see langword="false" />. Passing
|
/// <see langword="true" /> if depth test should be applied; otherwise, <see langword="false" />. Passing
|
||||||
/// <see langword="true" /> will have the box be obscured by objects closer to the camera.
|
/// <see langword="true" /> will have the box be obscured by objects closer to the camera.
|
||||||
/// </param>
|
/// </param>
|
||||||
|
/// <exception cref="ArgumentNullException"><paramref name="polygon" /> is <see langword="null" />.</exception>
|
||||||
public static void DrawPolygon(PolygonF polygon, in Vector3 offset, in Color color, float duration, bool depthTest)
|
public static void DrawPolygon(PolygonF polygon, in Vector3 offset, in Color color, float duration, bool depthTest)
|
||||||
{
|
{
|
||||||
|
if (polygon is null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(polygon));
|
||||||
|
}
|
||||||
|
|
||||||
IReadOnlyList<PointF> points = polygon.Vertices;
|
IReadOnlyList<PointF> points = polygon.Vertices;
|
||||||
if (points.Count < 2)
|
if (points.Count < 2)
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using X10D.Drawing;
|
using X10D.Drawing;
|
||||||
using X10D.Unity.Numerics;
|
using X10D.Unity.Numerics;
|
||||||
|
|
||||||
@ -103,8 +103,14 @@ public static partial class DebugUtility
|
|||||||
/// <see langword="true" /> if depth test should be applied; otherwise, <see langword="false" />. Passing
|
/// <see langword="true" /> if depth test should be applied; otherwise, <see langword="false" />. Passing
|
||||||
/// <see langword="true" /> will have the box be obscured by objects closer to the camera.
|
/// <see langword="true" /> will have the box be obscured by objects closer to the camera.
|
||||||
/// </param>
|
/// </param>
|
||||||
|
/// <exception cref="ArgumentNullException"><paramref name="polyhedron" /> is <see langword="null" />.</exception>
|
||||||
public static void DrawPolyhedron(Polyhedron polyhedron, in Vector3 offset, in Color color, float duration, bool depthTest)
|
public static void DrawPolyhedron(Polyhedron polyhedron, in Vector3 offset, in Color color, float duration, bool depthTest)
|
||||||
{
|
{
|
||||||
|
if (polyhedron is null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(polyhedron));
|
||||||
|
}
|
||||||
|
|
||||||
IReadOnlyList<System.Numerics.Vector3> points = polyhedron.Vertices;
|
IReadOnlyList<System.Numerics.Vector3> points = polyhedron.Vertices;
|
||||||
if (points.Count < 2)
|
if (points.Count < 2)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user