Esempio n. 1
0
void
av::gua::Ray::getDirectionCB(const SFVec3::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaRay->direction_;
}
Esempio n. 2
0
void
av::gua::Ray::getOriginCB(const SFVec3::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaRay->origin_;
}
Esempio n. 3
0
void
av::gua::TriangleMeshShape::getScalingCB(const SFVec3::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaShape->get_scaling();
}
Esempio n. 4
0
void av::gua::SkyMapPassDescription::getLightDirectionCB(const SFVec3::GetValueEvent& event) { *(event.getValuePtr()) = m_guaSkyMapPassDescription->light_direction(); }
Esempio n. 5
0
void
av::gua::BoxShape::getHalfExtentsCB(const SFVec3::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaShape->get_half_extents();
}
Esempio n. 6
0
void
av::gua::PlaneShape::getNormalCB(const SFVec3::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaShape->get_normal();
}