auto node = CCNode::create(); this->addChild(node);
node->setPosition(Vec2(100, 100)); node->setRotation(45);This code sets the position of the CCNode to `(100, 100)` and rotates it by 45 degrees. The `Vec2` class represents a 2D vector with x and y components. Package library: Cocos2d-x.