Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコード行があります。
model = ArticulatedModel::create(spec);
そしてAABox、それを使用して取得したいのAABox G3D::ArticulatedModel::Part::boxBoundsですが、C++ 構文を機能させるのに問題があります。
AABox
AABox G3D::ArticulatedModel::Part::boxBounds
boxBounds を参照するにはどうすればよいですか?
create()を与えますがArticulatedModel、それにはありませんboxBounds。ArticulatedModel::Partその属性は、まったく別のクラスである に属します。Partから特定のものを取得するには、または 名前ArticulatedModelを使用する必要があります。ID
create()
ArticulatedModel
boxBounds
ArticulatedModel::Part
Part
ID