Package-level declarations

Functions

Link copied to clipboard
fun Modifier.rotate3D(block: () -> Rotation3D): Modifier

Rotates the composable around the given Rotation3D

fun Modifier.rotate3D(degree: Float, axis: RotationAxis3D, pivot: NormalizedPoint3D = NormalizedPoint3D.Center): Modifier

Rotates the composable around the given axis and pivot by degree

Link copied to clipboard
fun Modifier.scale3D(block: () -> Scale3D): Modifier

Scales the composable by the given Scale3D factors, around the given pivot point.

fun Modifier.scale3D(scale: Float, pivot: NormalizedPoint3D = NormalizedPoint3D.Center): Modifier

Scales the composable by the given scale factor, around the given pivot point.

fun Modifier.scale3D(scaleX: Float, scaleY: Float, scaleZ: Float, pivot: NormalizedPoint3D = NormalizedPoint3D.Center): Modifier

Scales the composable by the given scaleX, scaleY and scaleZ factors, around the given pivot point.