Skip to main content

Class: CssScaleTransform

A CSS scale transform.

Hierarchy

  • AbstractCssTransform

    CssScaleTransform

Constructors

constructor

new CssScaleTransform(): CssScaleTransform

Creates a new instance of a CSS scale transform, initialized to the identity scaling.

Returns

CssScaleTransform

Overrides

AbstractCssTransform.constructor

Defined in

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

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:451


resolve

resolve(): string

Returns

string

Inherit Doc

Inherited from

AbstractCssTransform.resolve

Defined in

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


set

set(x, y, precisionX?, precisionY?): void

Sets this transform's scaling.

Parameters

NameTypeDefault valueDescription
xnumberundefinedThe x scaling to set.
ynumberundefinedThe y scaling to set.
precisionXnumber0The precision with which to set the x scaling. A value of 0 denotes infinite precision. Defaults to 0.
precisionYnumberprecisionXThe precision with which to set the y scaling. A value of 0 denotes infinite precision. Defaults to the x scaling precision value.

Returns

void

Defined in

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