myPosition[0] = theX;
myPosition[1] = theY;
+ myParamsTime.Modified();
}
CORBA::Double VISU::PointMap3d_i::GetPosX()
myWidth = theWidth;
myHeight = theHeight;
+ myParamsTime.Modified();
}
CORBA::Double VISU::PointMap3d_i::GetHeight()
if(myBarOrientation == theBarOrientation)
return;
+ if ( ( theBarOrientation == VISU::ColoredPrs3dBase::VERTICAL && myHeight < myWidth ) ||
+ ( theBarOrientation == VISU::ColoredPrs3dBase::HORIZONTAL && myHeight > myWidth ) ) {
+ vtkFloatingPointType tmp = myHeight;
+ myHeight = myWidth;
+ myWidth = tmp;
+ }
+
myBarOrientation = theBarOrientation;
+ myParamsTime.Modified();
}
VISU::ColoredPrs3dBase::Orientation VISU::PointMap3d_i::GetBarOrientation()