NTRT Simulator  Version: Master
 All Classes Namespaces Files Functions Variables Typedefs Friends Pages
AppStructuresOnStack.cpp
1 /*
2  * Copyright © 2012, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The NASA Tensegrity Robotics Toolkit (NTRT) v1 platform is licensed
7  * under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * http://www.apache.org/licenses/LICENSE-2.0.
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
15  * either express or implied. See the License for the specific language
16  * governing permissions and limitations under the License.
17 */
18 
27 // This application
28 
29 // This library
30 #include "tgcreator/tgNode.h"
31 #include "tgcreator/tgNodes.h"
32 #include "tgcreator/tgPair.h"
33 #include "tgcreator/tgStructure.h"
34 // The C++ Standard Library
35 #include <iostream>
36 
43 int main(int argc, char** argv)
44 {
45  std::cout << "AppStructuresOnStack" << std::endl;
46 
47  // Demonstrating working with structures without using "new tgStructure()" (!)
48 
49  tgStructure root;
50 
51  tgStructure sub;
52  sub.addNode(1,2,3, "testing");
53  sub.addNode(4,5,6, "testing");
54 
55  root.addChild(sub);
56  sub.move(btVector3(5,5,5));
57  root.addChild(sub); // Should add the moved version without altering the previously added sub
58 
59  std::cout << root << std::endl;
60 }
int main(int argc, char **argv)
void addChild(tgStructure *child)
Definition of class tgPair.
Definition of class tgNodes.
Definition of class tgNode.
Definition of class tgStructure.
void addNode(double x, double y, double z, std::string tags="")
Definition: tgStructure.cpp:70