Changeset 5671 in orxonox.OLD for trunk/src/lib/coord
- Timestamp:
- Nov 21, 2005, 3:50:41 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/coord/p_node.cc
r5654 r5671 141 141 static_cast<BaseObject*>(this)->loadParams(root); 142 142 143 LoadParam NEW(root, "rel-coor", this, PNode, setRelCoor)143 LoadParam(root, "rel-coor", this, PNode, setRelCoor) 144 144 .describe("Sets The relative position of the Node to its parent."); 145 145 146 LoadParam NEW(root, "abs-coor", this, PNode, setAbsCoor)146 LoadParam(root, "abs-coor", this, PNode, setAbsCoor) 147 147 .describe("Sets The absolute Position of the Node."); 148 148 149 LoadParam NEW(root, "rel-dir", this, PNode, setRelDir)149 LoadParam(root, "rel-dir", this, PNode, setRelDir) 150 150 .describe("Sets The relative rotation of the Node to its parent."); 151 151 152 LoadParam NEW(root, "abs-dir", this, PNode, setAbsDir)152 LoadParam(root, "abs-dir", this, PNode, setAbsDir) 153 153 .describe("Sets The absolute rotation of the Node."); 154 154 155 LoadParam NEW(root, "parent", this, PNode, setParent)155 LoadParam(root, "parent", this, PNode, setParent) 156 156 .describe("the Name of the Parent of this PNode"); 157 157 158 LoadParam NEW(root, "parent-mode", this, PNode, setParentMode)158 LoadParam(root, "parent-mode", this, PNode, setParentMode) 159 159 .describe("the mode to connect this node to its parent ()"); 160 160
Note: See TracChangeset
for help on using the changeset viewer.