Changeset 10916
- Timestamp:
- 01/05/10 12:15:17 (3 years ago)
- Location:
- OpenSceneGraph/trunk/src/osgWrappers
- Files:
-
- 2 added
- 1 removed
- 6 modified
-
osgAnimation/RigTransformHardware.cpp (added)
-
osgAnimation/RigTransformSoftware.cpp (added)
-
osgAnimation/Skinning.cpp (deleted)
-
osgDB/ReaderWriter.cpp (modified) (1 diff)
-
osgGA/KeySwitchMatrixManipulator.cpp (modified) (2 diffs)
-
osgGA/MatrixManipulator.cpp (modified) (2 diffs)
-
osgGA/SphericalManipulator.cpp (modified) (1 diff)
-
osgGA/TerrainManipulator.cpp (modified) (2 diffs)
-
osgGA/TrackballManipulator.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgWrappers/osgDB/ReaderWriter.cpp
r10201 r10916 234 234 "", 235 235 ""); 236 I_Method2(void, supportsProtocol, IN, const std::string &, fmt, IN, const std::string &, description, 237 Properties::NON_VIRTUAL, 238 __void__supportsProtocol__C5_std_string_R1__C5_std_string_R1, 239 "Specify fmt string as a supported protocol. ", 240 "Please note, this method should usually only be used internally by subclasses of ReaderWriter, Only in special cases will a ReaderWriter implementation be able to handle a protocol format that is wasn't original designed for. To know whether it's safe to inject a new protocol format to an existing ReaderWriter you will need to review the source code and dependencies of that ReaderWriter. "); 241 I_Method2(void, supportsExtension, IN, const std::string &, ext, IN, const std::string &, description, 242 Properties::NON_VIRTUAL, 243 __void__supportsExtension__C5_std_string_R1__C5_std_string_R1, 244 "Specify ext string as a supported file extension. ", 245 "Please note, this method should usually only be used internally by subclasses of ReaderWriter. Only in special cases will a ReaderWriter implementation be able to handle a file extension that is wasn't original designed for. To know whether it's safe to inject a new file extension to an existing ReaderWriter you will need to review the the source code and dependencies of that ReaderWriter. "); 246 I_Method2(void, supportsOption, IN, const std::string &, opt, IN, const std::string &, description, 247 Properties::NON_VIRTUAL, 248 __void__supportsOption__C5_std_string_R1__C5_std_string_R1, 249 "Specify option string as a supported option string. ", 250 "Please note, this should usually only be used internally by subclasses of ReaderWriter. "); 236 251 I_StaticMethod1(osgDB::ReaderWriter::FeatureList, featureAsString, IN, osgDB::ReaderWriter::Features, feature, 237 252 __FeatureList__featureAsString__Features_S, 238 253 "return feature as string ", 239 254 ""); 240 I_ProtectedMethod2(void, supportsProtocol, IN, const std::string &, fmt, IN, const std::string &, description,241 Properties::NON_VIRTUAL,242 Properties::NON_CONST,243 __void__supportsProtocol__C5_std_string_R1__C5_std_string_R1,244 "",245 "");246 I_ProtectedMethod2(void, supportsExtension, IN, const std::string &, fmt, IN, const std::string &, description,247 Properties::NON_VIRTUAL,248 Properties::NON_CONST,249 __void__supportsExtension__C5_std_string_R1__C5_std_string_R1,250 "",251 "");252 I_ProtectedMethod2(void, supportsOption, IN, const std::string &, fmt, IN, const std::string &, description,253 Properties::NON_VIRTUAL,254 Properties::NON_CONST,255 __void__supportsOption__C5_std_string_R1__C5_std_string_R1,256 "",257 "");258 255 END_REFLECTOR 259 256 -
OpenSceneGraph/trunk/src/osgWrappers/osgGA/KeySwitchMatrixManipulator.cpp
r9775 r10916 144 144 "Get the FusionDistanceValue. ", 145 145 "Used by SceneView for setting up stereo convergence. "); 146 I_Method1(void, setDistance, IN, double, distance, 147 Properties::NON_VIRTUAL, 148 __void__setDistance__double, 149 "Set the distance property. ", 150 ""); 151 I_Method0(double, getDistance, 152 Properties::VIRTUAL, 153 __double__getDistance, 154 "Get the distance property. ", 155 ""); 146 156 I_Method1(void, setNode, IN, osg::Node *, x, 147 157 Properties::VIRTUAL, … … 209 219 __MatrixManipulator_P1__getCurrentMatrixManipulator, 210 220 0); 221 I_SimpleProperty(double, Distance, 222 __double__getDistance, 223 __void__setDistance__double); 211 224 I_SimpleProperty(osgUtil::SceneView::FusionDistanceMode, FusionDistanceMode, 212 225 __osgUtil_SceneView_FusionDistanceMode__getFusionDistanceMode, -
OpenSceneGraph/trunk/src/osgWrappers/osgGA/MatrixManipulator.cpp
r7654 r10916 111 111 "Get the FusionDistanceValue. ", 112 112 "Used by SceneView for setting up stereo convergence. "); 113 I_Method1(void, setDistance, IN, double, x, 114 Properties::NON_VIRTUAL, 115 __void__setDistance__double, 116 "Set the distance parameter (used by TrackballManipulator etc. ", 117 ") "); 118 I_Method0(double, getDistance, 119 Properties::VIRTUAL, 120 __double__getDistance, 121 "Get the distance parameter. ", 122 ""); 113 123 I_Method1(void, setIntersectTraversalMask, IN, unsigned int, mask, 114 124 Properties::NON_VIRTUAL, … … 196 206 __CoordinateFrameCallback_P1__getCoordinateFrameCallback, 197 207 __void__setCoordinateFrameCallback__CoordinateFrameCallback_P1); 208 I_SimpleProperty(double, Distance, 209 __double__getDistance, 210 __void__setDistance__double); 198 211 I_SimpleProperty(osgUtil::SceneView::FusionDistanceMode, FusionDistanceMode, 199 212 __osgUtil_SceneView_FusionDistanceMode__getFusionDistanceMode, -
OpenSceneGraph/trunk/src/osgWrappers/osgGA/SphericalManipulator.cpp
r10430 r10916 138 138 "", 139 139 ""); 140 I_Method1(bool, setDistance, IN, double, distance,140 I_Method1(bool, setDistance, IN, double, x, 141 141 Properties::NON_VIRTUAL, 142 142 __bool__setDistance__double, 143 " ",144 " ");143 "Set the distance parameter (used by TrackballManipulator etc. ", 144 ") "); 145 145 I_Method0(double, getDistance, 146 Properties:: NON_VIRTUAL,146 Properties::VIRTUAL, 147 147 __double__getDistance, 148 " ",148 "Get the distance parameter. ", 149 149 ""); 150 150 I_Method0(double, getHomeDistance, -
OpenSceneGraph/trunk/src/osgWrappers/osgGA/TerrainManipulator.cpp
r10256 r10916 84 84 "Get the FusionDistanceValue. ", 85 85 "Used by SceneView for setting up stereo convergence. "); 86 I_Method1(void, setDistance, IN, double, distance, 87 Properties::NON_VIRTUAL, 88 __void__setDistance__double, 89 "Set the distance of the trackball. ", 90 ""); 91 I_Method0(double, getDistance, 92 Properties::VIRTUAL, 93 __double__getDistance, 94 "Get the distance of the trackball. ", 95 ""); 86 96 I_Method1(void, setNode, IN, osg::Node *, x, 87 97 Properties::VIRTUAL, … … 179 189 0, 180 190 __void__setByMatrix__C5_osg_Matrixd_R1); 191 I_SimpleProperty(double, Distance, 192 __double__getDistance, 193 __void__setDistance__double); 181 194 I_SimpleProperty(osgUtil::SceneView::FusionDistanceMode, FusionDistanceMode, 182 195 __osgUtil_SceneView_FusionDistanceMode__getFusionDistanceMode, -
OpenSceneGraph/trunk/src/osgWrappers/osgGA/TrackballManipulator.cpp
r10007 r10916 156 156 ""); 157 157 I_Method0(double, getDistance, 158 Properties:: NON_VIRTUAL,158 Properties::VIRTUAL, 159 159 __double__getDistance, 160 160 "Get the distance of the trackball. ",
