本文整理汇总了C++中LayerSurface::SetCurrentVertex方法的典型用法代码示例。如果您正苦于以下问题:C++ LayerSurface::SetCurrentVertex方法的具体用法?C++ LayerSurface::SetCurrentVertex怎么用?C++ LayerSurface::SetCurrentVertex使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LayerSurface
的用法示例。
在下文中一共展示了LayerSurface::SetCurrentVertex方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SurfaceVertexClicked
void RenderView3D::PickCurrentSurfaceVertex(int posX, int posY)
{
LayerCollection* lc_surface = MainWindow::GetMainWindow()->GetLayerCollection( "Surface" );
this->setToolTip("");
if ( lc_surface->IsEmpty() )
{
return;
}
vtkCellPicker* picker = vtkCellPicker::SafeDownCast( this->GetRenderWindow()->GetInteractor()->GetPicker() );
if ( picker )
{
picker->InitializePickList();
vtkPropCollection* props = GetRenderer()->GetViewProps();
if ( props )
{
props->InitTraversal();
vtkProp* prop = props->GetNextProp();
while ( prop )
{
if ( vtkActor::SafeDownCast( prop ) )
{
picker->AddPickList( prop );
}
prop = props->GetNextProp();
}
}
double pos[3];
picker->Pick( posX, rect().height() - posY, 0, GetRenderer() );
picker->GetPickPosition( pos );
vtkProp* prop = picker->GetViewProp();
Layer* layer = lc_surface->HasProp( prop );
if (layer)
{
LayerSurface* surf = (LayerSurface*)layer;
surf->SetCurrentVertex(surf->GetVertexIndexAtTarget(pos, NULL));
emit SurfaceVertexClicked();
}
}
}
示例2: SurfaceRegionSelected
//.........这里部分代码省略.........
vtkPoints* pts = vtkPolyDataMapper::SafeDownCast( m_actorSliceFrames[i]->GetMapper() )->GetInput()->GetPoints();
for ( int j = 0; j < 4; j++ )
{
double* p = pts->GetPoint( j );
this->WorldToScreen( p[0], p[1], p[2], x, y );
screen_pts[j][0] = x;
screen_pts[j][1] = y;
screen_pts[j][2] = 0;
}
int ids[4][2] = { {0, 1}, {1, 2}, {2, 3}, {3, 0} };
double dMinDist = 1000000000;
for ( int j = 0; j < 4; j++ )
{
double dist = vtkLine::DistanceToLine( screen_pt, screen_pts[ids[j][0]], screen_pts[ids[j][1]]);
if ( dist < dMinDist )
{
dMinDist = dist;
}
}
if ( dMinDist < SLICE_PICKER_PIXEL_TOLERANCE )
{
HighlightSliceFrame( i );
m_dIntersectPoint[0] = pos[0];
m_dIntersectPoint[1] = pos[1];
m_dIntersectPoint[2] = pos[2];
bFramePicked = true;
break;
}
}
}
}
if ( !bFramePicked )
{
// if ( !lc_surface->IsEmpty() && !lc_surface->HasProp( prop ) )
{
for ( int i = 0; i < 3; i++ )
{
picker->DeletePickList( m_actorSliceBoundingBox[i] );
}
picker->Pick( posX, rect().height() - posY, 0, GetRenderer() );
picker->GetPickPosition( pos );
prop = picker->GetViewProp();
}
if ( lc_mri->HasProp( prop ) || lc_roi->HasProp( prop ) )
{
if ( bCursor )
{
LayerMRI* mri = (LayerMRI*)lc_mri->HasProp( prop );
SurfaceRegion* reg = NULL;
if ( mri )
{
reg = mri->SelectSurfaceRegion( pos );
}
if ( reg )
{
RequestRedraw( true ); // force redraw
emit SurfaceRegionSelected(reg);
}
}
else
{
LayerVolumeTrack* vt = qobject_cast<LayerVolumeTrack*>(lc_mri->HasProp( prop ));
if (vt)
{
QVariantMap info = vt->GetLabelByProp(prop);
if (!info.isEmpty())
{
this->setToolTip(QString("%1 %2").arg(info["label"].toInt()).arg(info["name"].toString()));
emit VolumeTrackMouseOver(vt, info);
}
}
}
}
else if ( Layer* layer = lc_surface->HasProp( prop ) )
{
if ( bCursor )
{
lc_mri->SetCursorRASPosition( pos );
MainWindow::GetMainWindow()->SetSlicePosition( pos );
if (layer)
{
lc_surface->SetActiveLayer(layer);
LayerSurface* surf = (LayerSurface*)layer;
surf->SetCurrentVertex(surf->GetVertexIndexAtTarget(pos, NULL));
}
emit SurfaceVertexClicked();
}
else
{
lc_mri->SetCurrentRASPosition( pos );
}
}
HighlightSliceFrame( -1 );
}
}
}