We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The msvVTKButtons properties OnCenter, OnCorner and CornerIndex are a bit confusing.
I would suggest instead to factorize those properties in 2:
enum LocationType { OnDataCenter = 0, OnDataCorner = 1, OnScreenCorner =2 }; vtkSetMacro(Location, int); vtkGetMacro(Location, int); enum ScreenCornerType { BottomLeft = 0, BottomRight = 1, TopLeft = 2, TopRight = 3 }; vtkSetMacro(ScreenCorner, int); vtkGetMacro(ScreenCorner, int);
This would gives the ability to easily extend the list of possible locations.
The text was updated successfully, but these errors were encountered:
alosi
No branches or pull requests
The msvVTKButtons properties OnCenter, OnCorner and CornerIndex are a bit confusing.
I would suggest instead to factorize those properties in 2:
This would gives the ability to easily extend the list of possible locations.
The text was updated successfully, but these errors were encountered: