From ca0b2de91764f10bdc1255e4bf71003b4427310b Mon Sep 17 00:00:00 2001 From: Syntriax Date: Sun, 15 Jun 2025 13:29:53 +0300 Subject: [PATCH] docs: fixed typo on Shape2D parameter --- Engine.Core/Primitives/Shape2D.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine.Core/Primitives/Shape2D.cs b/Engine.Core/Primitives/Shape2D.cs index 06122c0..fbef6a2 100644 --- a/Engine.Core/Primitives/Shape2D.cs +++ b/Engine.Core/Primitives/Shape2D.cs @@ -270,7 +270,7 @@ public static class Shape2DExtensions public static Triangle ToSuperTriangle(this Shape2D shape) => Shape2D.GetSuperTriangle(shape); /// - public static void ToTrianglesConvex(this Shape2D shape, IList lines) => Shape2D.TriangulateConvex(shape, lines); + public static void ToTrianglesConvex(this Shape2D shape, IList triangles) => Shape2D.TriangulateConvex(shape, triangles); /// public static List ToTrianglesConvex(this Shape2D shape) => Shape2D.TriangulateConvex(shape);