]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Protection.
authorageay <ageay>
Thu, 28 Jun 2012 15:49:34 +0000 (15:49 +0000)
committerageay <ageay>
Thu, 28 Jun 2012 15:49:34 +0000 (15:49 +0000)
src/MEDCoupling/MEDCouplingPointSet.cxx

index 3b7692cadcbb583e1dc5038927565574410e6c5f..0611c63428a45c08b7664e9ec6fe26d06e707674 100644 (file)
@@ -792,6 +792,8 @@ void MEDCouplingPointSet::rotate3D(const double *center, const double *vect, dou
  */
 void MEDCouplingPointSet::Rotate3DAlg(const double *center, const double *vect, double angle, int nbNodes, double *coords)
 {
+  if(!center || !vect)
+    throw INTERP_KERNEL::Exception("MEDCouplingPointSet::Rotate3DAlg : null vector in input !");
   double sina=sin(angle);
   double cosa=cos(angle);
   double vectorNorm[3];