<!--
{
  "availability" : [
    "iOS: 8.0.0 - 26.0.0",
    "iPadOS: 8.0.0 - 26.0.0",
    "macCatalyst: 13.1.0 - 26.0.0",
    "macOS: 10.8.0 - 26.0.0",
    "tvOS: 9.0.0 - 26.0.0",
    "visionOS: 1.0.0 - 26.0.0",
    "watchOS: 3.0.0 - 26.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SceneKit",
  "identifier" : "/documentation/SceneKit/SCNPlane/init(width:height:)",
  "metadataVersion" : "0.1.0",
  "role" : "Initializer",
  "symbol" : {
    "kind" : "Initializer",
    "modules" : [
      "SceneKit"
    ],
    "preciseIdentifier" : "c:objc(cs)SCNPlane(cm)planeWithWidth:height:"
  },
  "title" : "init(width:height:)"
}
-->

# init(width:height:)

Creates a plane geometry with the specified width and height.

```
convenience init(width: CGFloat, height: CGFloat)
```

## Parameters

`width`

The width of the plane along the x-axis of its local coordinate space.

`height`

The height of the plane along the y-axis of its local coordinate space.

## Return Value

A new plane geometry.

## Discussion

The plane is centered in its local coordinate system. For example, if you create a plane whose width and height are both `10.0`, it extends from `-5.0` to `5.0` along both the x- and y-axes, and the z-coordinate of all points in the plane is zero.

---

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)