Skip to main content

Class: CssRotate3dTransform

A CSS rotate3d transform.

Hierarchy

  • AbstractCssTransform

    CssRotate3dTransform

Constructors

constructor

new CssRotate3dTransform(unit): CssRotate3dTransform

Creates a new instance of a CSS rotate3d transform, initialized to zero rotation about the z axis.

Parameters

NameTypeDescription
unit"rad" | "deg"The angle unit to use for this transform.

Returns

CssRotate3dTransform

Overrides

AbstractCssTransform.constructor

Defined in

src/sdk/graphics/css/CssTransform.ts:145

Properties

cachedParams

Protected Readonly cachedParams: Float64Array

Inherited from

AbstractCssTransform.cachedParams

Defined in

src/sdk/graphics/css/CssTransform.ts:22


params

Protected Readonly params: Float64Array

Inherited from

AbstractCssTransform.params

Defined in

src/sdk/graphics/css/CssTransform.ts:21


stringValue

Protected Optional stringValue: string

Inherited from

AbstractCssTransform.stringValue

Defined in

src/sdk/graphics/css/CssTransform.ts:24

Methods

buildString

buildString(params): string

Parameters

NameType
paramsReadonly<Omit<Float64Array, "set" | "sort" | "copyWithin">>

Returns

string

Inherit Doc

Overrides

AbstractCssTransform.buildString

Defined in

src/sdk/graphics/css/CssTransform.ts:166


resolve

resolve(): string

Returns

string

Inherit Doc

Inherited from

AbstractCssTransform.resolve

Defined in

src/sdk/graphics/css/CssTransform.ts:36


set

set(x, y, z, angle, precision?): void

Sets this transform's rotation.

Parameters

NameTypeDefault valueDescription
xnumberundefinedThe x component of the rotation axis vector.
ynumberundefinedThe y component of the rotation axis vector.
znumberundefinedThe z component of the rotation axis vector.
anglenumberundefinedThe rotation angle to set.
precisionnumber0The precision with which to set the angle. A value of 0 denotes infinite precision. Defaults to 0.

Returns

void

Defined in

src/sdk/graphics/css/CssTransform.ts:158