本文整理汇总了C++中Box2f::isEmpty方法的典型用法代码示例。如果您正苦于以下问题:C++ Box2f::isEmpty方法的具体用法?C++ Box2f::isEmpty怎么用?C++ Box2f::isEmpty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Box2f
的用法示例。
在下文中一共展示了Box2f::isEmpty方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: preRender
void CropWindowTool::preRender()
{
const Box2f resolutionGate = static_cast<SceneView *>( view() )->resolutionGate();
if( resolutionGate.isEmpty() )
{
m_overlay->setVisible( false );
return;
}
if( !activePlug()->getValue() )
{
return;
}
m_overlay->setVisible( true );
if( !m_overlayDirty )
{
return;
}
Box2f cropWindow( V2f( 0 ), V2f( 1 ) );
findCropWindowPlug();
if( m_cropWindowPlug )
{
cropWindow = m_cropWindowPlug->getValue();
}
BlockedConnection blockedConnection( m_overlayRectangleChangedConnection );
m_overlay->setRectangle(
Box2f(
V2f(
lerp( resolutionGate.min.x, resolutionGate.max.x, cropWindow.min.x ),
lerp( resolutionGate.min.y, resolutionGate.max.y, cropWindow.min.y )
),
V2f(
lerp( resolutionGate.min.x, resolutionGate.max.x, cropWindow.max.x ),
lerp( resolutionGate.min.y, resolutionGate.max.y, cropWindow.max.y )
)
)
);
m_overlayDirty = false;
}