Add sync slice point method(empty)

This commit is contained in:
Krad
2022-04-19 16:09:08 +08:00
parent 8c87641c36
commit d3dce236eb
2 changed files with 5 additions and 0 deletions

View File

@@ -627,6 +627,10 @@ void infinitiViewer::ChangeSlice(vtkObject *, unsigned long eventid, void *calld
SetSlice(newSlice);
}
void infinitiViewer::SyncSlicePoint(double * point) {
//TODO:SyncSlicePoint with different series in same study
}
vtkSmartPointer<vtkPoints> infinitiViewer::GetSliceBoundPoints(){
double bounds[6] ={.0, .0, .0, .0, .0, .0};
ImageMapper->GetBounds(bounds);

View File

@@ -322,6 +322,7 @@ public:
vtkSignalRaiser* GetSignalRaiser(){
return &raiser;
}
void SyncSlicePoint(double* point);
protected:
infinitiViewer();