# Plane ![](/cientos/plane.png) The `cientos` package provides a `` component that serves as a short-cut for a `PlaneGeometry` and a `MeshBasicMaterial` with a `Mesh` object. ```typescript args: [width: number, height: number, widthSegments: number, heightSegments: number] ``` Reference: [PlaneGeometry](https://threejs.org/docs/?q=plane#api/en/geometries/PlaneGeometry) ::: info A convenient default rotation is applied to the _x-axis_ of the plane (`-Math.PI / 2`), so that it is facing up (along the Y axis). ::: ## Usage ```html // Plane with a custom material transformations ```