本文整理汇总了C++中BoundingBox::depth方法的典型用法代码示例。如果您正苦于以下问题:C++ BoundingBox::depth方法的具体用法?C++ BoundingBox::depth怎么用?C++ BoundingBox::depth使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BoundingBox
的用法示例。
在下文中一共展示了BoundingBox::depth方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: renderV
/*!
\brief BBMovementVisualizer::renderV
*/
void BBMovementVisualizer::renderV()
{
if ( m_movementAnalyzer->dataAvailable() )
{
mp_window->makeContextCurrent();
mp_boundingBoxLowerBody->setVisible( true );
BoundingBox* boundingBox = dynamic_cast<BoundingBox*>( m_movementAnalyzer->getLatestBoudingGeomerty().data() );
if ( boundingBox )
{
mp_boundingBoxLowerBody->setPosition( boundingBox->x(),
boundingBox->y(),
boundingBox->z() );
mp_boundingBoxLowerBody->setScale( boundingBox->width(),
boundingBox->height(),
boundingBox->depth() );
}
}
else
{
mp_boundingBoxLowerBody->setVisible( false );
}
}
示例2: labelBoundingBoxForNode
static BoundingBox labelBoundingBoxForNode(Graph *graph, node n) {
IntegerProperty *viewShape = graph->getProperty<IntegerProperty>("viewShape");
LayoutProperty *viewLayout = graph->getProperty<LayoutProperty>("viewLayout");
SizeProperty *viewSize = graph->getProperty<SizeProperty>("viewSize");
BoundingBox renderingBox;
GlyphsManager::getGlyph(viewShape->getNodeValue(n))->getTextBoundingBox(renderingBox);
const Coord &pos = viewLayout->getNodeValue(n);
const Size &size = viewSize->getNodeValue(n) * Size(renderingBox.width(), renderingBox.height(), renderingBox.depth());
return BoundingBox(pos - size/2.f, pos + size/2.f);
}