ctkVTKMatrixWidget.cpp 863 B

123456789101112131415161718192021222324252627
  1. /*=========================================================================
  2. Library: CTK
  3. Copyright (c) Kitware Inc.
  4. All rights reserved.
  5. Distributed under a BSD License. See LICENSE.txt file.
  6. This software is distributed "AS IS" WITHOUT ANY WARRANTY; without even
  7. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the above copyright notice for more information.
  9. =========================================================================*/
  10. #include "ctkVTKMatrixWidget.h"
  11. // --------------------------------------------------------------------------
  12. void ctkVTKMatrixWidget::setMatrix(vtkMatrix4x4* _matrix)
  13. {
  14. this->setMatrixInternal(_matrix);
  15. }
  16. // --------------------------------------------------------------------------
  17. ctkVTKMatrixWidget::ctkVTKMatrixWidget(QWidget* _parent) : Superclass(_parent)
  18. {
  19. }