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);