<!--
{
  "documentType" : "article",
  "framework" : "CoreGraphics",
  "identifier" : "/documentation/CoreGraphics/geometric-zeros",
  "metadataVersion" : "0.1.0",
  "role" : "collectionGroup",
  "title" : "Geometric Zeros"
}
-->

# Geometric Zeros

A zero point, zero rectangle, or zero size.

## Topics

### Constants

[`let CGPointZero: CGPoint`](/documentation/CoreGraphics/CGPointZero)

A point constant with location `(0,0)`. The zero point is equivalent to `CGPointMake(0,0)`.

[`let CGRectZero: CGRect`](/documentation/CoreGraphics/CGRectZero)

A rectangle constant with location `(0,0)`, and width and height of 0. The zero rectangle is equivalent to `CGRectMake(0,0,0,0)`.

[`let CGSizeZero: CGSize`](/documentation/CoreGraphics/CGSizeZero)

A size constant with width and height of `0`. The zero size is equivalent to `CGSizeMake(0,0)`.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)