IntSize3D

@Stable
class IntSize3D(val width: Int, val height: Int, val depth: Int)

The 3D size of a layout.

Constructors

Link copied to clipboard
constructor(width: Int, height: Int, depth: Int)

Types

Link copied to clipboard
object Companion

the companion of IntSize3D

Properties

Link copied to clipboard
val depth: Int

the depth of the layout in the 3D coordinates space.

Link copied to clipboard
val height: Int

the height of the layout in the 3D coordinates space.

Link copied to clipboard
val width: Int

the width of the layout in the 3D coordinates space.

Functions

Link copied to clipboard
fun copy(width: Int = this.width, height: Int = this.height, depth: Int = this.depth): IntSize3D

copy the size with new width, height and depth.

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String