! * \brief This method applies an additional transformation to the input points * passed with the () operator. * \param mat */
| 55 | * \param mat |
| 56 | */ |
| 57 | void ViewProjMethod::setTransform(const Base::Matrix4D& mat) |
| 58 | { |
| 59 | transform = mat; |
| 60 | hasTransform = (mat != Base::Matrix4D()); |
| 61 | } |
| 62 | |
| 63 | void ViewProjMethod::transformInput(const Base::Vector3f& src, Base::Vector3f& dst) const |
| 64 | { |
no test coverage detected