本文整理汇总了C++中PNode::GetGlobalModelInvMatrix方法的典型用法代码示例。如果您正苦于以下问题:C++ PNode::GetGlobalModelInvMatrix方法的具体用法?C++ PNode::GetGlobalModelInvMatrix怎么用?C++ PNode::GetGlobalModelInvMatrix使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PNode
的用法示例。
在下文中一共展示了PNode::GetGlobalModelInvMatrix方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SetGlobalPosition
void Node::SetGlobalPosition(const Vertex3& position)
{
PNode parent = parent_.lock();
if (parent == nullptr)
{
SetPosition(position);
}
else
{
SetPosition(Vertex3(parent->GetGlobalModelInvMatrix() * Vertex4(position, 1)));
}
}
示例2: SetGlobalOrientation
void Node::SetGlobalOrientation(const Quaternion& q)
{
PNode parent = parent_.lock();
if (parent == nullptr)
{
SetOrientation(q);
}
else
{
SetOrientation(Normalize(Quaternion(parent->GetGlobalModelInvMatrix()) * q));
}
}
示例3: Translate
void Node::Translate(const Vector3& delta, TransformSpace space)
{
switch (space)
{
case TS_LOCAL:
// Note: local space translation disregards local scale for scale-independent movement speed
position_ += GetOrientation() * delta;
break;
case TS_PARENT:
position_ += delta;
break;
case TS_WORLD:
{
PNode parent = parent_.lock();
position_ += (parent == scene_.lock() || !parent) ? delta : Vector3(parent->GetGlobalModelInvMatrix() * Vector4(delta, 0.0f));
break;
}
}
MarkAsDirty();
}