diff --git a/src/SixLabors.Core/Primitives/Point.cs b/src/SixLabors.Core/Primitives/Point.cs
index f922711aa..04779ee9b 100644
--- a/src/SixLabors.Core/Primitives/Point.cs
+++ b/src/SixLabors.Core/Primitives/Point.cs
@@ -25,11 +25,6 @@ namespace SixLabors.Primitives
///
public static readonly Point Empty = default(Point);
- ///
- /// Represents a that has X and Y values set to zero.
- ///
- public static readonly Point Zero = new Point(0, 0);
-
///
/// Initializes a new instance of the struct.
///
diff --git a/src/SixLabors.Core/Primitives/PointF.cs b/src/SixLabors.Core/Primitives/PointF.cs
index 032ba6726..985eda0fe 100644
--- a/src/SixLabors.Core/Primitives/PointF.cs
+++ b/src/SixLabors.Core/Primitives/PointF.cs
@@ -25,11 +25,6 @@ namespace SixLabors.Primitives
///
public static readonly PointF Empty = default(PointF);
- ///
- /// Represents a that has X and Y values set to zero.
- ///
- public static readonly PointF Zero = new PointF(0, 0);
-
///
/// Initializes a new instance of the struct.
///
diff --git a/src/SixLabors.Core/Primitives/Size.cs b/src/SixLabors.Core/Primitives/Size.cs
index abc7ad4cb..799768a8f 100644
--- a/src/SixLabors.Core/Primitives/Size.cs
+++ b/src/SixLabors.Core/Primitives/Size.cs
@@ -23,11 +23,6 @@ namespace SixLabors.Primitives
/// Represents a that has Width and Height values set to zero.
///
public static readonly Size Empty = default(Size);
- ///
- /// Represents a that has Width and Height values set to zero.
- ///
- public static readonly Size Zero = new Size(0, 0);
-
///
/// Initializes a new instance of the struct.
diff --git a/src/SixLabors.Core/Primitives/SizeF.cs b/src/SixLabors.Core/Primitives/SizeF.cs
index e356a4edb..d1d05e501 100644
--- a/src/SixLabors.Core/Primitives/SizeF.cs
+++ b/src/SixLabors.Core/Primitives/SizeF.cs
@@ -24,11 +24,6 @@ namespace SixLabors.Primitives
///
public static readonly SizeF Empty = default(SizeF);
- ///
- /// Represents a that has Width and Height values set to zero.
- ///
- public static readonly SizeF Zero = new SizeF(0, 0);
-
///
/// Initializes a new instance of the struct.
///