Remove unnecessary config.h includes
[alexxy/gromacs.git] / src / programs / view / molps.cpp
index 311c9e4e91a4c1951eb9cc0d3382e389bd449191..03c0d21513663480739aabb5d5dc0605fe60e02f 100644 (file)
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "gmxpre.h"
 
 #include <math.h>
 #include <stdlib.h>
 #include <string.h>
 
-#include "macros.h"
-#include "xutil.h"
-#include "buttons.h"
-#include "manager.h"
-#include "nmol.h"
-#include "nleg.h"
+#include "gromacs/legacyheaders/macros.h"
 
 #include "gromacs/fileio/writeps.h"
-#include "gromacs/math/3dview.h"
 #include "gromacs/utility/smalloc.h"
 
+#include "3dview.h"
+#include "buttons.h"
+#include "manager.h"
+#include "nleg.h"
+#include "nmol.h"
+#include "xutil.h"
+
 #define MSIZE 4
 
 static void ps_draw_atom(t_psdata ps, atom_id ai, iv2 vec2[], char **atomnm[])
@@ -197,7 +196,7 @@ static void draw_box(t_psdata ps, t_3dview *view, matrix box,
         {
             corner[i][j] = ivec[i][j]*box[j][j];
         }
-        m4_op(view->proj, corner[i], x4);
+        gmx_mat4_transform_point(view->proj, corner[i], x4);
         v4_to_iv2(x4, vec2[i], x0, y0, sx, sy);
     }
     ps_color(ps, 0, 0, 0.5);
@@ -241,7 +240,7 @@ void ps_draw_mol(t_psdata ps, t_manager *man)
     {
         if (man->bVis[i])
         {
-            m4_op(view->proj, man->x[i], x4);
+            gmx_mat4_transform_point(view->proj, man->x[i], x4);
             man->zz[i] = x4[ZZ];
             v4_to_iv2(x4, vec2[i], x0, y0, sx, sy);
         }