IntOffset3D

@Immutable
class IntOffset3D(val x: Int, val y: Int, val z: Int)

Represent a 3D offset in pixel.

Return

A IntOffset3D with the given x, y and z values.

Parameters

x

The x value.

y

The y value.

z

The z value.

Constructors

Link copied to clipboard
constructor(x: Int, y: Int, z: Int)

Types

Link copied to clipboard
object Companion

Holds built-in IntOffset3Ds.

Properties

Link copied to clipboard
val x: Int
Link copied to clipboard
val y: Int
Link copied to clipboard
val z: Int

Functions

Link copied to clipboard
fun copy(x: Int = this.x, y: Int = this.y, z: Int = this.z): IntOffset3D
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