以下のコードが失敗する理由を理解している誰かがそこにいることを願っています。osg :: Node *ノードオブジェクトからPositionAttitudeTransform(Openscenegraphクラス)のインスタンスを取得しようとしています。ただし、以下の太字のコンパイラエラーがあります。
void CameraPosCallbackUpdate::operator()(osg::Node* node, osg::NodeVisitor* nv)
{
// other code goes here
osg::PositionAttitudeTransform* pat = dynamic_cast<osg::PositionAttitudeTransform*> (node);
}
IntelliSense:dynamic_castの型は、完全なクラス型へのポインターまたは参照である必要があります。そうでない場合は、void *
オブジェクトにアクセスする正しい方法を教えてください。キャストが可能であると信じているので、ここでの問題が何であるかを理解するのに役立ちます。
http://www.openscenegraph.org/documentation/OpenSceneGraphReferenceDocs/a00529.html