1 /* 2 * Copyright (c) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #include "rs_node.h" 17 18 namespace OHOS { 19 namespace Rosen { SetPivotX(float pivotX)20void RSNode::SetPivotX(float pivotX) 21 { 22 } 23 SetPivotY(float pivotY)24void RSNode::SetPivotY(float pivotY) 25 { 26 } 27 SetScaleX(float scaleX)28void RSNode::SetScaleX(float scaleX) 29 { 30 } 31 SetScaleY(float scaleY)32void RSNode::SetScaleY(float scaleY) 33 { 34 } 35 SetRotation(float degree)36void RSNode::SetRotation(float degree) 37 { 38 } 39 SetRotation(const Quaternion & quaternion)40void RSNode::SetRotation(const Quaternion& quaternion) 41 { 42 } 43 SetRotationX(float degree)44void RSNode::SetRotationX(float degree) 45 { 46 } 47 SetRotationY(float degree)48void RSNode::SetRotationY(float degree) 49 { 50 } 51 SetTranslateX(float translate)52void RSNode::SetTranslateX(float translate) 53 { 54 } 55 SetTranslateY(float translate)56void RSNode::SetTranslateY(float translate) 57 { 58 } 59 SetTranslateZ(float translate)60void RSNode::SetTranslateZ(float translate) 61 { 62 } 63 } 64 }