Searched refs:pivotValue (Results 1 – 2 of 2) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_node/src/ |
H A D | render_node.ts | 399 private pivotValue: Vector2; 435 this.pivotValue = { x: 0.5, y: 0.5 }; 485 this.pivotValue = { x: 0.5, y: 0.5 }; 487 this.pivotValue.x = this.checkUndefinedOrNullWithDefaultValue<number>(pivot.x, 0.5); 488 this.pivotValue.y = this.checkUndefinedOrNullWithDefaultValue<number>(pivot.y, 0.5); 490 getUINativeModule().renderNode.setPivot(this.nodePtr, this.pivotValue.x, this.pivotValue.y); 616 return this.pivotValue;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | jsXNode.js | 1787 this.pivotValue = { x: 0.5, y: 0.5 }; class in RenderNode.constructor 1837 this.pivotValue = { x: 0.5, y: 0.5 }; class 1840 this.pivotValue.x = this.checkUndefinedOrNullWithDefaultValue(pivot.x, 0.5); 1841 this.pivotValue.y = this.checkUndefinedOrNullWithDefaultValue(pivot.y, 0.5); 1843 getUINativeModule().renderNode.setPivot(this.nodePtr, this.pivotValue.x, this.pivotValue.y); 1979 return this.pivotValue;
|