All public logs

From KitwarePublic
Jump to navigationJump to search

Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/PerpendicularVector (content was: "==PerpendicularVector.cxx== This example finds a vector perpendicular to the x axis (1,0,0). Since theta is specified as 0, the negative z axis (0, 0, -1) is returned. <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMath.h> int main(int, char *[]) { double x[3] = {1,0,0}; double y[3]; vtkMath::Perpendiculars(x, y, NULL, 0); std::cout << "y: " << y[0] << " " << y[1] << " " << y[2] << std::endl; return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SU...")