Changes in / [7067bd6:49d3d39]
- Location:
- src
- Files:
-
- 9 added
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Box.cpp
r7067bd6 r49d3d39 14 14 #include "Matrix.hpp" 15 15 #include "vector.hpp" 16 #include "Shapes/BaseShapes.hpp" 17 #include "Shapes/ShapeOps.hpp" 16 18 17 19 #include "Helpers/Assert.hpp" … … 127 129 } 128 130 131 Shape Box::getShape() const{ 132 return transform(Cuboid(Vector(0,0,0),Vector(1,1,1)),(*M)); 133 134 } 135 129 136 Box &Box::operator=(const Box &src){ 130 137 if(&src!=this){ -
src/Box.hpp
r7067bd6 r49d3d39 11 11 class Matrix; 12 12 class Vector; 13 class Shape; 13 14 14 15 #include <list> … … 84 85 double periodicDistance(const Vector &point1,const Vector &point2) const; 85 86 87 Shape getShape() const; 88 86 89 private: 87 90 Matrix *M; //!< Defines the layout of the box -
src/Line.cpp
r7067bd6 r49d3d39 37 37 Line::~Line() 38 38 {} 39 40 Line &Line::operator=(const Line& rhs){ 41 if(this!=&rhs){ 42 origin.reset(new Vector(*rhs.origin)); 43 direction.reset(new Vector(*rhs.direction)); 44 } 45 return *this; 46 } 39 47 40 48 … … 234 242 } 235 243 244 LinePoint Line::getLinePoint(const Vector &point) const{ 245 ASSERT(isContained(point),"Line point queried for point not on line"); 246 Vector helper = point - (*origin); 247 double param = helper.ScalarProduct(*direction); 248 return LinePoint(*this,param); 249 } 250 251 LinePoint Line::posEndpoint() const{ 252 return LinePoint(*this, numeric_limits<double>::infinity()); 253 } 254 LinePoint Line::negEndpoint() const{ 255 return LinePoint(*this,-numeric_limits<double>::infinity()); 256 } 257 258 bool operator==(const Line &x,const Line &y){ 259 return *x.origin == *y.origin && *x.direction == *y.direction; 260 } 261 236 262 Line makeLineThrough(const Vector &x1, const Vector &x2){ 237 263 if(x1==x2){ … … 240 266 return Line(x1,x1-x2); 241 267 } 268 269 270 /******************************** Points on the line ********************/ 271 272 LinePoint::LinePoint(const LinePoint &src) : 273 line(src.line),param(src.param) 274 {} 275 276 LinePoint::LinePoint(const Line &_line, double _param) : 277 line(_line),param(_param) 278 {} 279 280 LinePoint& LinePoint::operator=(const LinePoint &src){ 281 ASSERT(src.line==line,"Operation on two points of different lines"); 282 param=src.param; 283 return *this; 284 } 285 286 Vector LinePoint::getPoint() const{ 287 ASSERT(!isInfinite(),"getPoint() on infinite LinePoint called"); 288 return (*line.origin)+param*(*line.direction); 289 } 290 291 Line LinePoint::getLine() const{ 292 return line; 293 } 294 295 bool LinePoint::isInfinite() const{ 296 return isPosInfinity() || isNegInfinity(); 297 } 298 bool LinePoint::isPosInfinity() const{ 299 return param == numeric_limits<double>::infinity(); 300 } 301 bool LinePoint::isNegInfinity() const{ 302 return param ==-numeric_limits<double>::infinity(); 303 } 304 305 bool operator==(const LinePoint &x, const LinePoint &y){ 306 ASSERT(x.line==y.line,"Operation on two points of different lines"); 307 return x.param == y.param; 308 309 } 310 bool operator<(const LinePoint &x, const LinePoint &y){ 311 ASSERT(x.line==y.line,"Operation on two points of different lines"); 312 return x.param<y.param; 313 } -
src/Line.hpp
r7067bd6 r49d3d39 16 16 class Vector; 17 17 class Plane; 18 class LinePoint; 18 19 19 20 class Line : public Space 20 21 { 22 friend bool operator==(const Line&,const Line&); 23 friend class LinePoint; 21 24 public: 22 25 Line(const Vector &_origin, const Vector &_direction); 23 26 Line(const Line& _src); 24 27 virtual ~Line(); 28 29 Line &operator=(const Line& rhs); 25 30 26 31 virtual double distance(const Vector &point) const; … … 40 45 std::vector<Vector> getSphereIntersections() const; 41 46 47 LinePoint getLinePoint(const Vector&) const; 48 LinePoint posEndpoint() const; 49 LinePoint negEndpoint() const; 50 42 51 private: 43 52 std::auto_ptr<Vector> origin; 44 53 std::auto_ptr<Vector> direction; 45 54 }; 55 56 bool operator==(const Line&,const Line&); 46 57 47 58 /** … … 50 61 Line makeLineThrough(const Vector &x1, const Vector &x2); 51 62 63 /** 64 * Class for representing points on a line 65 * These objects allow comparison of points on the same line as well as specifying the 66 * infinite "endpoints" of a line. 67 */ 68 class LinePoint{ 69 friend class Line; 70 friend bool operator==(const LinePoint&, const LinePoint&); 71 friend bool operator<(const LinePoint&, const LinePoint&); 72 public: 73 LinePoint(const LinePoint&); 74 LinePoint& operator=(const LinePoint&); 75 Vector getPoint() const; 76 Line getLine() const; 77 bool isInfinite() const; 78 bool isPosInfinity() const; 79 bool isNegInfinity() const; 80 81 private: 82 LinePoint(const Line&,double); 83 Line line; 84 double param; 85 }; 86 87 bool operator==(const LinePoint&, const LinePoint&); 88 bool operator<(const LinePoint&, const LinePoint&); 89 90 inline bool operator!= (const LinePoint& x, const LinePoint& y) { return !(x==y); } 91 inline bool operator> (const LinePoint& x, const LinePoint& y) { return y<x; } 92 inline bool operator<= (const LinePoint& x, const LinePoint& y) { return !(y<x); } 93 inline bool operator>= (const LinePoint& x, const LinePoint& y) { return !(x<y); } 94 95 52 96 #endif /* LINE_HPP_ */ -
src/Makefile.am
r7067bd6 r49d3d39 82 82 Exceptions/MathException.cpp \ 83 83 Exceptions/NotInvertibleException.cpp \ 84 Exceptions/NotOnSurfaceException.cpp \ 85 Exceptions/ShapeException.cpp \ 84 86 Exceptions/ParseError.cpp \ 85 87 Exceptions/SkewException.cpp \ … … 91 93 Exceptions/MathException.hpp \ 92 94 Exceptions/NotInvertibleException.hpp \ 95 Exceptions/NotOnSurfaceException.hpp \ 96 Exceptions/ShapeException.hpp \ 93 97 Exceptions/ParseError.hpp \ 94 98 Exceptions/SkewException.hpp \ … … 149 153 Descriptors/AtomIdDescriptor.cpp \ 150 154 Descriptors/AtomSelectionDescriptor.cpp \ 155 Descriptors/AtomShapeDescriptor.cpp \ 151 156 Descriptors/AtomTypeDescriptor.cpp \ 152 157 Descriptors/MoleculeDescriptor.cpp \ … … 161 166 Descriptors/AtomIdDescriptor.hpp \ 162 167 Descriptors/AtomSelectionDescriptor.hpp \ 168 Descriptors/AtomShapeDescriptor.hpp \ 163 169 Descriptors/AtomTypeDescriptor.hpp \ 164 170 Descriptors/MoleculeDescriptor.hpp \ … … 210 216 leastsquaremin.cpp \ 211 217 Line.cpp \ 218 LineSegment.cpp \ 212 219 linkedcell.cpp \ 213 220 log.cpp \ … … 261 268 leastsquaremin.hpp \ 262 269 Line.hpp \ 270 LineSegment.hpp \ 263 271 linkedcell.hpp \ 264 272 lists.hpp \ -
src/Matrix.cpp
r7067bd6 r49d3d39 213 213 } 214 214 215 Matrix Matrix::transpose() const{ 216 MatrixContent *newContent = new MatrixContent(); 217 gsl_matrix_transpose_memcpy(newContent->content, content->content); 218 Matrix res = Matrix(newContent); 219 return res; 220 } 221 215 222 Matrix &Matrix::operator*=(const double factor){ 216 223 gsl_matrix_scale(content->content, factor); -
src/Matrix.hpp
r7067bd6 r49d3d39 96 96 Matrix invert() const; 97 97 98 Matrix transpose() const; 99 98 100 // operators 99 101 Matrix &operator=(const Matrix&); -
src/Plane.cpp
r7067bd6 r49d3d39 15 15 #include "verbose.hpp" 16 16 #include "Helpers/Assert.hpp" 17 #include "helpers.hpp" 17 18 #include <cmath> 18 19 #include "Line.hpp" … … 106 107 Plane::~Plane() 107 108 {} 109 110 Plane &Plane::operator=(const Plane &rhs){ 111 if(&rhs!=this){ 112 normalVector.reset(new Vector(*rhs.normalVector)); 113 offset = rhs.offset; 114 } 115 return *this; 116 } 108 117 109 118 … … 188 197 } 189 198 199 bool Plane::onSameSide(const Vector &point1,const Vector &point2) const{ 200 return sign(point1.ScalarProduct(*normalVector)-offset) == 201 sign(point2.ScalarProduct(*normalVector)-offset); 202 } 203 190 204 /************ Methods inherited from Space ****************/ 191 205 … … 207 221 // Operators 208 222 223 bool operator==(const Plane &x,const Plane &y){ 224 return *x.normalVector == *y.normalVector && x.offset == y.offset; 225 } 226 209 227 ostream &operator << (ostream &ost,const Plane &p){ 210 228 ost << "<" << p.getNormal() << ";x> - " << p.getOffset() << "=0"; -
src/Plane.hpp
r7067bd6 r49d3d39 21 21 class Plane : public Space 22 22 { 23 friend bool operator==(const Plane&,const Plane&); 23 24 typedef std::auto_ptr<Vector> vec_ptr; 24 25 public: … … 29 30 Plane(const Plane& plane); 30 31 virtual ~Plane(); 32 33 Plane &operator=(const Plane&); 31 34 32 35 // Accessor Functions … … 63 66 Line getOrthogonalLine(const Vector &origin) const; 64 67 68 /** 69 * Test if two points are on the same side of the plane 70 */ 71 bool onSameSide(const Vector&,const Vector&) const; 72 65 73 /****** Methods inherited from Space ***********/ 66 74 … … 73 81 }; 74 82 83 bool operator==(const Plane&,const Plane&); 84 75 85 std::ostream &operator<< (std::ostream &ost,const Plane& p); 76 86 -
src/Shapes/BaseShapes.cpp
r7067bd6 r49d3d39 8 8 #include "Shapes/BaseShapes.hpp" 9 9 #include "Shapes/BaseShapes_impl.hpp" 10 #include "Shapes/ShapeOps.hpp" 10 11 11 12 #include "vector.hpp" 13 #include "Helpers/Assert.hpp" 14 15 #include <cmath> 16 #include <algorithm> 12 17 13 18 bool Sphere_impl::isInside(const Vector &point){ 14 19 return point.NormSquared()<=1; 20 } 21 22 bool Sphere_impl::isOnSurface(const Vector &point){ 23 return fabs(point.NormSquared()-1)<MYEPSILON; 24 } 25 26 Vector Sphere_impl::getNormal(const Vector &point) throw(NotOnSurfaceException){ 27 if(!isOnSurface(point)){ 28 throw NotOnSurfaceException(__FILE__,__LINE__); 29 } 30 return point; 31 } 32 33 string Sphere_impl::toString(){ 34 return "Sphere()"; 15 35 } 16 36 … … 20 40 } 21 41 42 Shape Sphere(const Vector ¢er,double radius){ 43 return translate(resize(Sphere(),radius),center); 44 } 45 46 Shape Ellipsoid(const Vector ¢er, const Vector &radius){ 47 return translate(stretch(Sphere(),radius),center); 48 } 49 22 50 bool Cuboid_impl::isInside(const Vector &point){ 23 return point[0]<=1 && point[1]<=1 && point[2]<=1; 51 return fabs(point[0])<=1 && fabs(point[1])<=1 && fabs(point[2])<=1; 52 } 53 54 bool Cuboid_impl::isOnSurface(const Vector &point){ 55 bool retVal = isInside(point); 56 // test all borders of the cuboid 57 // double fabs 58 retVal = retVal && 59 ((fabs(fabs(point[0])-1) < MYEPSILON) || 60 (fabs(fabs(point[1])-1) < MYEPSILON) || 61 (fabs(fabs(point[2])-1) < MYEPSILON)); 62 return retVal; 63 } 64 65 Vector Cuboid_impl::getNormal(const Vector &point) throw(NotOnSurfaceException){ 66 if(!isOnSurface(point)){ 67 throw NotOnSurfaceException(__FILE__,__LINE__); 68 } 69 Vector res; 70 // figure out on which sides the Vector lies (maximum 3, when it is in a corner) 71 for(int i=NDIM;i--;){ 72 if(fabs(fabs(point[i])-1)<MYEPSILON){ 73 // add the scaled (-1/+1) Vector to the set of surface vectors 74 res[i] = point[i]; 75 } 76 } 77 ASSERT(res.NormSquared()>=1 && res.NormSquared()<=3,"To many or to few sides found for this Vector"); 78 79 res.Normalize(); 80 return res; 81 } 82 83 string Cuboid_impl::toString(){ 84 return "Cuboid()"; 24 85 } 25 86 26 87 Shape Cuboid(){ 27 Shape::impl_ptr impl = Shape::impl_ptr(new Sphere_impl());88 Shape::impl_ptr impl = Shape::impl_ptr(new Cuboid_impl()); 28 89 return Shape(impl); 29 90 } 91 92 Shape Cuboid(const Vector &corner1, const Vector &corner2){ 93 // make sure the two edges are upper left front and lower right back 94 Vector sortedC1; 95 Vector sortedC2; 96 for(int i=NDIM;i--;){ 97 sortedC1[i] = min(corner1[i],corner2[i]); 98 sortedC2[i] = max(corner1[i],corner2[i]); 99 ASSERT(corner1[i]!=corner2[i],"Given points for cuboid edges did not define a valid space"); 100 } 101 // get the middle point 102 Vector middle = (1./2.)*(sortedC1+sortedC2); 103 Vector factors = sortedC2-middle; 104 return translate(stretch(Cuboid(),factors),middle); 105 } -
src/Shapes/BaseShapes.hpp
r7067bd6 r49d3d39 12 12 13 13 Shape Sphere(); 14 Shape Sphere(const Vector ¢er,double radius); 15 Shape Ellipsoid(const Vector ¢er, const Vector &radius); 14 16 Shape Cuboid(); 17 Shape Cuboid(const Vector &corner1, const Vector &corner2); 15 18 16 19 #endif /* BASESHAPES_HPP_ */ -
src/Shapes/BaseShapes_impl.hpp
r7067bd6 r49d3d39 13 13 class Sphere_impl : public Shape_impl { 14 14 virtual bool isInside(const Vector &point); 15 virtual bool isOnSurface(const Vector &point); 16 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException); 17 virtual std::string toString(); 15 18 }; 16 19 17 20 class Cuboid_impl : public Shape_impl { 18 21 virtual bool isInside(const Vector &point); 22 virtual bool isOnSurface(const Vector &point); 23 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException); 24 virtual std::string toString(); 19 25 }; 20 26 -
src/Shapes/Shape.cpp
r7067bd6 r49d3d39 9 9 #include "Shape_impl.hpp" 10 10 11 #include "Helpers/Assert.hpp" 12 13 #include <string> 14 15 using namespace std; 16 11 17 Shape::Shape(const Shape& src) : 12 18 impl(src.getImpl()) … … 17 23 bool Shape::isInside(const Vector &point) const{ 18 24 return impl->isInside(point); 25 } 26 27 bool Shape::isOnSurface(const Vector &point) const{ 28 return impl->isOnSurface(point); 29 } 30 31 Vector Shape::getNormal(const Vector &point) const throw (NotOnSurfaceException){ 32 return impl->getNormal(point); 19 33 } 20 34 … … 30 44 } 31 45 46 std::string Shape::toString() const{ 47 return impl->toString(); 48 } 49 32 50 Shape::impl_ptr Shape::getImpl() const{ 33 51 return impl; … … 65 83 } 66 84 85 bool AndShape_impl::isOnSurface(const Vector &point){ 86 // check the number of surfaces that this point is on 87 int surfaces =0; 88 surfaces += lhs->isOnSurface(point); 89 surfaces += rhs->isOnSurface(point); 90 91 switch(surfaces){ 92 case 0: 93 return false; 94 // no break necessary 95 case 1: 96 // if it is inside for the object where it does not lie on 97 // the surface the whole point lies inside 98 return (lhs->isOnSurface(point) && rhs->isInside(point)) || 99 (rhs->isOnSurface(point) && lhs->isInside(point)); 100 // no break necessary 101 case 2: 102 { 103 // it lies on both Shapes... could be an edge or an inner point 104 // test the direction of the normals 105 Vector direction=lhs->getNormal(point)+rhs->getNormal(point); 106 // if the directions are opposite we lie on the inside 107 return !direction.IsZero(); 108 } 109 // no break necessary 110 default: 111 // if this happens there is something wrong 112 ASSERT(0,"Default case should have never been used"); 113 } 114 return false; // never reached 115 } 116 117 Vector AndShape_impl::getNormal(const Vector &point) throw (NotOnSurfaceException){ 118 Vector res; 119 if(!isOnSurface(point)){ 120 throw NotOnSurfaceException(__FILE__,__LINE__); 121 } 122 res += lhs->isOnSurface(point)?lhs->getNormal(point):zeroVec; 123 res += rhs->isOnSurface(point)?rhs->getNormal(point):zeroVec; 124 res.Normalize(); 125 return res; 126 } 127 128 string AndShape_impl::toString(){ 129 return string("(") + lhs->toString() + string("&&") + rhs->toString() + string(")"); 130 } 131 67 132 Shape operator&&(const Shape &lhs,const Shape &rhs){ 68 133 Shape::impl_ptr newImpl = Shape::impl_ptr(new AndShape_impl(getShapeImpl(lhs),getShapeImpl(rhs))); … … 82 147 } 83 148 149 bool OrShape_impl::isOnSurface(const Vector &point){ 150 // check the number of surfaces that this point is on 151 int surfaces =0; 152 surfaces += lhs->isOnSurface(point); 153 surfaces += rhs->isOnSurface(point); 154 155 switch(surfaces){ 156 case 0: 157 return false; 158 // no break necessary 159 case 1: 160 // if it is inside for the object where it does not lie on 161 // the surface the whole point lies inside 162 return (lhs->isOnSurface(point) && !rhs->isInside(point)) || 163 (rhs->isOnSurface(point) && !lhs->isInside(point)); 164 // no break necessary 165 case 2: 166 { 167 // it lies on both Shapes... could be an edge or an inner point 168 // test the direction of the normals 169 Vector direction=lhs->getNormal(point)+rhs->getNormal(point); 170 // if the directions are opposite we lie on the inside 171 return !direction.IsZero(); 172 } 173 // no break necessary 174 default: 175 // if this happens there is something wrong 176 ASSERT(0,"Default case should have never been used"); 177 } 178 return false; // never reached 179 } 180 181 Vector OrShape_impl::getNormal(const Vector &point) throw (NotOnSurfaceException){ 182 Vector res; 183 if(!isOnSurface(point)){ 184 throw NotOnSurfaceException(__FILE__,__LINE__); 185 } 186 res += lhs->isOnSurface(point)?lhs->getNormal(point):zeroVec; 187 res += rhs->isOnSurface(point)?rhs->getNormal(point):zeroVec; 188 res.Normalize(); 189 return res; 190 } 191 192 string OrShape_impl::toString(){ 193 return string("(") + lhs->toString() + string("||") + rhs->toString() + string(")"); 194 } 195 84 196 Shape operator||(const Shape &lhs,const Shape &rhs){ 85 197 Shape::impl_ptr newImpl = Shape::impl_ptr(new OrShape_impl(getShapeImpl(lhs),getShapeImpl(rhs))); … … 99 211 } 100 212 213 bool NotShape_impl::isOnSurface(const Vector &point){ 214 return arg->isOnSurface(point); 215 } 216 217 Vector NotShape_impl::getNormal(const Vector &point) throw(NotOnSurfaceException){ 218 return -1*arg->getNormal(point); 219 } 220 221 string NotShape_impl::toString(){ 222 return string("!") + arg->toString(); 223 } 224 101 225 Shape operator!(const Shape &arg){ 102 226 Shape::impl_ptr newImpl = Shape::impl_ptr(new NotShape_impl(getShapeImpl(arg))); 103 227 return Shape(newImpl); 104 228 } 229 230 /**************** global operations *********************************/ 231 ostream &operator<<(ostream &ost,const Shape &shape){ 232 ost << shape.toString(); 233 return ost; 234 } -
src/Shapes/Shape.hpp
r7067bd6 r49d3d39 10 10 11 11 #include <boost/shared_ptr.hpp> 12 #include <iosfwd> 13 14 #include "Exceptions/NotOnSurfaceException.hpp" 12 15 13 16 class Vector; … … 25 28 26 29 bool isInside(const Vector &point) const; 30 bool isOnSurface(const Vector &point) const; 31 Vector getNormal(const Vector &point) const throw(NotOnSurfaceException); 27 32 28 33 Shape &operator=(const Shape& rhs); 29 34 35 std::string toString() const; 30 36 protected: 31 37 impl_ptr getImpl() const; … … 42 48 Shape operator!(const Shape&); 43 49 50 std::ostream &operator<<(std::ostream&,const Shape&); 51 44 52 #endif /* SHAPE_HPP_ */ -
src/Shapes/ShapeOps.cpp
r7067bd6 r49d3d39 11 11 #include "Helpers/Assert.hpp" 12 12 13 /*************** Base case ***********************/ 14 15 ShapeOpsBase_impl::ShapeOpsBase_impl(const Shape::impl_ptr &_arg) : 16 arg(_arg){} 17 18 ShapeOpsBase_impl::~ShapeOpsBase_impl(){} 19 20 bool ShapeOpsBase_impl::isInside(const Vector &point){ 21 return arg->isInside(translateIn(point)); 22 } 23 24 bool ShapeOpsBase_impl::isOnSurface(const Vector &point){ 25 return arg->isOnSurface(translateIn(point)); 26 } 27 28 Vector ShapeOpsBase_impl::getNormal(const Vector &point) throw (NotOnSurfaceException){ 29 Vector helper = translateIn(point); 30 if(!arg->isOnSurface(helper)){ 31 throw NotOnSurfaceException(__FILE__,__LINE__); 32 } 33 return translateOutNormal(arg->getNormal(helper)); 34 } 35 36 Shape::impl_ptr ShapeOpsBase_impl::getArg(){ 37 return arg; 38 } 39 13 40 /********************* Resize ********************/ 14 41 15 42 Resize_impl::Resize_impl(const Shape::impl_ptr &_arg,double _size) : 16 arg(_arg), size(_size)43 ShapeOpsBase_impl(_arg), size(_size) 17 44 { 18 45 ASSERT(size>0,"Cannot resize a Shape to size zero or below"); … … 21 48 Resize_impl::~Resize_impl(){} 22 49 23 bool Resize_impl::isInside(const Vector& point){ 24 return arg->isInside((1/size) * point); 50 Vector Resize_impl::translateIn(const Vector& point){ 51 return (1/size) * point; 52 } 53 54 Vector Resize_impl::translateOutPos(const Vector& point){ 55 return size * point; 56 } 57 58 Vector Resize_impl::translateOutNormal(const Vector& point){ 59 return point; 60 } 61 62 string Resize_impl::toString(){ 63 stringstream sstr; 64 sstr << "resize(" << getArg()->toString() << "," << size << ")"; 65 return sstr.str(); 25 66 } 26 67 … … 33 74 34 75 Translate_impl::Translate_impl(const Shape::impl_ptr &_arg, const Vector &_offset) : 35 arg(_arg),offset(_offset)76 ShapeOpsBase_impl(_arg),offset(_offset) 36 77 {} 37 78 38 79 Translate_impl::~Translate_impl(){} 39 80 40 bool Translate_impl::isInside(const Vector& point){ 41 return arg->isInside(point-offset); 81 Vector Translate_impl::translateIn(const Vector& point){ 82 return point-offset; 83 } 84 85 Vector Translate_impl::translateOutPos(const Vector& point){ 86 return point+offset; 87 } 88 89 Vector Translate_impl::translateOutNormal(const Vector& point){ 90 return point; 91 } 92 93 string Translate_impl::toString(){ 94 stringstream sstr; 95 sstr << "translate(" << getArg()->toString() << "," << offset << ")"; 96 return sstr.str(); 42 97 } 43 98 … … 50 105 51 106 Stretch_impl::Stretch_impl(const Shape::impl_ptr &_arg, const Vector &_factors) : 52 arg(_arg),factors(_factors)107 ShapeOpsBase_impl(_arg),factors(_factors) 53 108 { 54 109 ASSERT(factors[0]>0,"cannot stretch a shape by a negative amount"); … … 62 117 Stretch_impl::~Stretch_impl(){} 63 118 64 bool Stretch_impl::isInside(const Vector& point){119 Vector Stretch_impl::translateIn(const Vector& point){ 65 120 Vector helper=point; 66 121 helper.ScaleAll(reciFactors); 67 return arg->isInside(helper); 122 return helper; 123 } 124 125 Vector Stretch_impl::translateOutPos(const Vector& point){ 126 Vector helper=point; 127 helper.ScaleAll(factors); 128 return helper; 129 } 130 131 Vector Stretch_impl::translateOutNormal(const Vector& point){ 132 Vector helper=point; 133 // the normalFactors are derived from appearances of the factors 134 // with in the vectorproduct 135 Vector normalFactors; 136 normalFactors[0]=factors[1]*factors[2]; 137 normalFactors[1]=factors[0]*factors[2]; 138 normalFactors[2]=factors[0]*factors[1]; 139 helper.ScaleAll(normalFactors); 140 return helper; 141 } 142 143 string Stretch_impl::toString(){ 144 stringstream sstr; 145 sstr << "stretch(" << getArg()->toString() << "," << factors << ")"; 146 return sstr.str(); 68 147 } 69 148 … … 76 155 77 156 Transform_impl::Transform_impl(const Shape::impl_ptr &_arg, const Matrix &_transformation) : 78 arg(_arg),transformation(_transformation)157 ShapeOpsBase_impl(_arg),transformation(_transformation) 79 158 { 80 159 transformationInv = transformation.invert(); … … 83 162 Transform_impl::~Transform_impl(){} 84 163 85 bool Transform_impl::isInside(const Vector& point){ 86 return arg->isInside(transformationInv * point); 164 Vector Transform_impl::translateIn(const Vector& point){ 165 return transformationInv * point; 166 } 167 168 Vector Transform_impl::translateOutPos(const Vector& point){ 169 return transformation * point; 170 } 171 172 Vector Transform_impl::translateOutNormal(const Vector& point){ 173 Matrix mat = transformation.determinant() * transformation.invert().transpose(); 174 return mat * point; 175 } 176 177 string Transform_impl::toString(){ 178 stringstream sstr; 179 sstr << "transform(" << getArg()->toString() << "," << transformation << ")"; 180 return sstr.str(); 87 181 } 88 182 -
src/Shapes/ShapeOps_impl.hpp
r7067bd6 r49d3d39 13 13 #include "Matrix.hpp" 14 14 15 class Resize_impl : public Shape_impl 15 class ShapeOpsBase_impl : public Shape_impl{ 16 public: 17 ShapeOpsBase_impl(const Shape::impl_ptr&); 18 virtual ~ShapeOpsBase_impl(); 19 virtual bool isInside(const Vector &point); 20 virtual bool isOnSurface(const Vector &point); 21 virtual Vector getNormal(const Vector &point) throw (NotOnSurfaceException); 22 protected: 23 virtual Vector translateIn(const Vector &point)=0; 24 virtual Vector translateOutPos(const Vector &point)=0; 25 virtual Vector translateOutNormal(const Vector &point)=0; 26 Shape::impl_ptr getArg(); 27 private: 28 Shape::impl_ptr arg; 29 }; 30 31 class Resize_impl : public ShapeOpsBase_impl 16 32 { 17 33 public: 18 34 Resize_impl(const Shape::impl_ptr&,double); 19 35 virtual ~Resize_impl(); 20 virtual bool isInside(const Vector& point); 36 protected: 37 virtual Vector translateIn(const Vector &point); 38 virtual Vector translateOutPos(const Vector &point); 39 virtual Vector translateOutNormal(const Vector &point); 40 virtual std::string toString(); 21 41 private: 22 Shape::impl_ptr arg;23 42 double size; 24 43 }; 25 44 26 class Translate_impl : public Shape _impl45 class Translate_impl : public ShapeOpsBase_impl 27 46 { 28 47 public: 29 48 Translate_impl(const Shape::impl_ptr&, const Vector&); 30 49 virtual ~Translate_impl(); 31 virtual bool isInside(const Vector& point); 50 protected: 51 virtual Vector translateIn(const Vector &point); 52 virtual Vector translateOutPos(const Vector &point); 53 virtual Vector translateOutNormal(const Vector &point); 54 virtual std::string toString(); 32 55 private: 33 Shape::impl_ptr arg;34 56 Vector offset; 35 57 }; 36 58 37 class Stretch_impl : public Shape _impl59 class Stretch_impl : public ShapeOpsBase_impl 38 60 { 39 61 public: 40 62 Stretch_impl(const Shape::impl_ptr&, const Vector&); 41 63 virtual ~Stretch_impl(); 42 virtual bool isInside(const Vector& point); 64 protected: 65 virtual Vector translateIn(const Vector &point); 66 virtual Vector translateOutPos(const Vector &point); 67 virtual Vector translateOutNormal(const Vector &point); 68 virtual std::string toString(); 43 69 private: 44 Shape::impl_ptr arg;45 70 Vector factors; 46 71 Vector reciFactors; 47 72 }; 48 73 49 class Transform_impl : public Shape _impl74 class Transform_impl : public ShapeOpsBase_impl 50 75 { 51 76 public: 52 77 Transform_impl(const Shape::impl_ptr&, const Matrix&); 53 78 virtual ~Transform_impl(); 54 virtual bool isInside(const Vector& point); 79 protected: 80 virtual Vector translateIn(const Vector &point); 81 virtual Vector translateOutPos(const Vector &point); 82 virtual Vector translateOutNormal(const Vector &point); 83 virtual std::string toString(); 55 84 private: 56 Shape::impl_ptr arg;57 85 Matrix transformation; 58 86 Matrix transformationInv; -
src/Shapes/Shape_impl.hpp
r7067bd6 r49d3d39 10 10 11 11 #include "Shapes/Shape.hpp" 12 #include "vector.hpp" 12 13 13 14 class Shape_impl { … … 16 17 virtual ~Shape_impl(){}; 17 18 virtual bool isInside(const Vector &point)=0; 19 virtual bool isOnSurface(const Vector &point)=0; 20 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException)=0; 21 virtual std::string toString()=0; 18 22 }; 19 23 … … 23 27 return true; 24 28 } 29 virtual bool isOnSurface(const Vector &point){ 30 return false; 31 } 32 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException){ 33 throw NotOnSurfaceException(__FILE__,__LINE__); 34 } 35 virtual std::string toString(){ 36 return "Everywhere()"; 37 } 25 38 }; 26 39 … … 28 41 virtual bool isInside(const Vector &point){ 29 42 return false; 43 } 44 virtual bool isOnSurface(const Vector &point){ 45 return false; 46 } 47 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException){ 48 throw NotOnSurfaceException(__FILE__,__LINE__); 49 } 50 virtual std::string toString(){ 51 return "Nowhere()"; 30 52 } 31 53 }; … … 36 58 virtual ~AndShape_impl(); 37 59 virtual bool isInside(const Vector &point); 60 virtual bool isOnSurface(const Vector &point); 61 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException); 62 virtual std::string toString(); 38 63 private: 39 64 Shape::impl_ptr lhs; … … 46 71 virtual ~OrShape_impl(); 47 72 virtual bool isInside(const Vector &point); 73 virtual bool isOnSurface(const Vector &point); 74 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException); 75 virtual std::string toString(); 48 76 private: 49 77 Shape::impl_ptr lhs; … … 56 84 virtual ~NotShape_impl(); 57 85 virtual bool isInside(const Vector &point); 86 virtual bool isOnSurface(const Vector &point); 87 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException); 88 virtual std::string toString(); 58 89 private: 59 90 Shape::impl_ptr arg; -
src/helpers.cpp
r7067bd6 r49d3d39 141 141 exit(255); 142 142 } 143 144 sign_t sign(double value){ 145 if(fabs(value)<MYEPSILON){ 146 return Zero; 147 } 148 if(value<0) 149 return Minus; 150 else 151 return Plus; 152 } -
src/helpers.hpp
r7067bd6 r49d3d39 43 43 const char *file, const int line); 44 44 //__attribute__ ((__return__)); 45 46 typedef enum { 47 Minus = -1, 48 Zero = 0, 49 Plus = +1 50 } sign_t; 45 51 46 52 double ask_value(const char *text); … … 52 58 int CompareDoubles (const void * a, const void * b); 53 59 void performCriticalExit(); 60 sign_t sign(double value); 54 61 55 62 /********************************************** helpful template functions *********************************/ -
src/unittests/LineUnittest.cpp
r7067bd6 r49d3d39 29 29 void LineUnittest::setUp(){ 30 30 // three lines along the axes 31 la1 = new Line(zeroVec, e1);32 la2 = new Line(zeroVec, e2);33 la3 = new Line(zeroVec, e3);31 la1 = new Line(zeroVec,unitVec[0]); 32 la2 = new Line(zeroVec,unitVec[1]); 33 la3 = new Line(zeroVec,unitVec[2]); 34 34 35 35 // the lines along the planes defined by two coordinate axes 36 lp1 = new Line( e1,e1-e2);37 lp2 = new Line( e2,e2-e3);38 lp3 = new Line( e3,e3-e1);36 lp1 = new Line(unitVec[0],unitVec[0]-unitVec[1]); 37 lp2 = new Line(unitVec[1],unitVec[1]-unitVec[2]); 38 lp3 = new Line(unitVec[2],unitVec[2]-unitVec[0]); 39 39 } 40 40 void LineUnittest::tearDown(){ … … 52 52 53 53 // direction+origin should never fail 54 CPPUNIT_ASSERT_NO_THROW(Line(zeroVec, e1));55 CPPUNIT_ASSERT_NO_THROW(Line(zeroVec, e2));56 CPPUNIT_ASSERT_NO_THROW(Line(zeroVec, e3));54 CPPUNIT_ASSERT_NO_THROW(Line(zeroVec,unitVec[0])); 55 CPPUNIT_ASSERT_NO_THROW(Line(zeroVec,unitVec[1])); 56 CPPUNIT_ASSERT_NO_THROW(Line(zeroVec,unitVec[2])); 57 57 58 58 // two points fails if both points are the same 59 CPPUNIT_ASSERT_NO_THROW(makeLineThrough( e1,e2));60 CPPUNIT_ASSERT_NO_THROW(makeLineThrough( e2,e3));61 CPPUNIT_ASSERT_NO_THROW(makeLineThrough( e3,e1));59 CPPUNIT_ASSERT_NO_THROW(makeLineThrough(unitVec[0],unitVec[1])); 60 CPPUNIT_ASSERT_NO_THROW(makeLineThrough(unitVec[1],unitVec[2])); 61 CPPUNIT_ASSERT_NO_THROW(makeLineThrough(unitVec[2],unitVec[0])); 62 62 // for zerovectors 63 CPPUNIT_ASSERT_NO_THROW(makeLineThrough( e1,zeroVec));64 CPPUNIT_ASSERT_NO_THROW(makeLineThrough( e2,zeroVec));65 CPPUNIT_ASSERT_NO_THROW(makeLineThrough( e3,zeroVec));63 CPPUNIT_ASSERT_NO_THROW(makeLineThrough(unitVec[0],zeroVec)); 64 CPPUNIT_ASSERT_NO_THROW(makeLineThrough(unitVec[1],zeroVec)); 65 CPPUNIT_ASSERT_NO_THROW(makeLineThrough(unitVec[2],zeroVec)); 66 66 // now we pass two times the same point 67 67 CPPUNIT_ASSERT_THROW(makeLineThrough(zeroVec,zeroVec),LinearDependenceException); 68 CPPUNIT_ASSERT_THROW(makeLineThrough( e1,e1),LinearDependenceException);69 CPPUNIT_ASSERT_THROW(makeLineThrough( e2,e2),LinearDependenceException);70 CPPUNIT_ASSERT_THROW(makeLineThrough( e3,e3),LinearDependenceException);68 CPPUNIT_ASSERT_THROW(makeLineThrough(unitVec[0],unitVec[0]),LinearDependenceException); 69 CPPUNIT_ASSERT_THROW(makeLineThrough(unitVec[1],unitVec[1]),LinearDependenceException); 70 CPPUNIT_ASSERT_THROW(makeLineThrough(unitVec[2],unitVec[2]),LinearDependenceException); 71 71 72 72 } … … 78 78 void LineUnittest::constructionResultTest(){ 79 79 // test all directions 80 CPPUNIT_ASSERT(testDirection(la1->getDirection(), e1));81 CPPUNIT_ASSERT(testDirection(la2->getDirection(), e2));82 CPPUNIT_ASSERT(testDirection(la3->getDirection(), e3));80 CPPUNIT_ASSERT(testDirection(la1->getDirection(),unitVec[0])); 81 CPPUNIT_ASSERT(testDirection(la2->getDirection(),unitVec[1])); 82 CPPUNIT_ASSERT(testDirection(la3->getDirection(),unitVec[2])); 83 83 84 84 // test origins … … 92 92 CPPUNIT_ASSERT(la3->isContained(zeroVec)); 93 93 94 CPPUNIT_ASSERT(la1->isContained( e1));95 CPPUNIT_ASSERT(la2->isContained( e2));96 CPPUNIT_ASSERT(la3->isContained( e3));97 98 CPPUNIT_ASSERT(lp1->isContained( e1));99 CPPUNIT_ASSERT(lp2->isContained( e2));100 CPPUNIT_ASSERT(lp3->isContained( e3));101 102 CPPUNIT_ASSERT(lp1->isContained( e2));103 CPPUNIT_ASSERT(lp2->isContained( e3));104 CPPUNIT_ASSERT(lp3->isContained( e1));94 CPPUNIT_ASSERT(la1->isContained(unitVec[0])); 95 CPPUNIT_ASSERT(la2->isContained(unitVec[1])); 96 CPPUNIT_ASSERT(la3->isContained(unitVec[2])); 97 98 CPPUNIT_ASSERT(lp1->isContained(unitVec[0])); 99 CPPUNIT_ASSERT(lp2->isContained(unitVec[1])); 100 CPPUNIT_ASSERT(lp3->isContained(unitVec[2])); 101 102 CPPUNIT_ASSERT(lp1->isContained(unitVec[1])); 103 CPPUNIT_ASSERT(lp2->isContained(unitVec[2])); 104 CPPUNIT_ASSERT(lp3->isContained(unitVec[0])); 105 105 } 106 106 … … 112 112 113 113 // multiples of the second support vector 114 CPPUNIT_ASSERT(la1->isContained( e1));115 CPPUNIT_ASSERT(la2->isContained( e2));116 CPPUNIT_ASSERT(la3->isContained( e3));117 118 CPPUNIT_ASSERT(la1->isContained(2* e1));119 CPPUNIT_ASSERT(la2->isContained(2* e2));120 CPPUNIT_ASSERT(la3->isContained(2* e3));121 122 CPPUNIT_ASSERT(la1->isContained(3* e1));123 CPPUNIT_ASSERT(la2->isContained(3* e2));124 CPPUNIT_ASSERT(la3->isContained(3* e3));114 CPPUNIT_ASSERT(la1->isContained(unitVec[0])); 115 CPPUNIT_ASSERT(la2->isContained(unitVec[1])); 116 CPPUNIT_ASSERT(la3->isContained(unitVec[2])); 117 118 CPPUNIT_ASSERT(la1->isContained(2*unitVec[0])); 119 CPPUNIT_ASSERT(la2->isContained(2*unitVec[1])); 120 CPPUNIT_ASSERT(la3->isContained(2*unitVec[2])); 121 122 CPPUNIT_ASSERT(la1->isContained(3*unitVec[0])); 123 CPPUNIT_ASSERT(la2->isContained(3*unitVec[1])); 124 CPPUNIT_ASSERT(la3->isContained(3*unitVec[2])); 125 125 126 126 // negative multiples 127 CPPUNIT_ASSERT(la1->isContained(-1* e1));128 CPPUNIT_ASSERT(la2->isContained(-1* e2));129 CPPUNIT_ASSERT(la3->isContained(-1* e3));130 131 CPPUNIT_ASSERT(la1->isContained(-2* e1));132 CPPUNIT_ASSERT(la2->isContained(-2* e2));133 CPPUNIT_ASSERT(la3->isContained(-2* e3));127 CPPUNIT_ASSERT(la1->isContained(-1*unitVec[0])); 128 CPPUNIT_ASSERT(la2->isContained(-1*unitVec[1])); 129 CPPUNIT_ASSERT(la3->isContained(-1*unitVec[2])); 130 131 CPPUNIT_ASSERT(la1->isContained(-2*unitVec[0])); 132 CPPUNIT_ASSERT(la2->isContained(-2*unitVec[1])); 133 CPPUNIT_ASSERT(la3->isContained(-2*unitVec[2])); 134 134 135 135 // points that should not be on the lines 136 CPPUNIT_ASSERT(!la1->isContained( e2));137 CPPUNIT_ASSERT(!la2->isContained( e3));138 CPPUNIT_ASSERT(!la3->isContained( e1));139 140 CPPUNIT_ASSERT(!la1->isContained(2* e2));141 CPPUNIT_ASSERT(!la2->isContained(2* e3));142 CPPUNIT_ASSERT(!la3->isContained(2* e1));143 144 CPPUNIT_ASSERT(!la1->isContained(-1* e2));145 CPPUNIT_ASSERT(!la2->isContained(-1* e3));146 CPPUNIT_ASSERT(!la3->isContained(-1* e1));136 CPPUNIT_ASSERT(!la1->isContained(unitVec[1])); 137 CPPUNIT_ASSERT(!la2->isContained(unitVec[2])); 138 CPPUNIT_ASSERT(!la3->isContained(unitVec[0])); 139 140 CPPUNIT_ASSERT(!la1->isContained(2*unitVec[1])); 141 CPPUNIT_ASSERT(!la2->isContained(2*unitVec[2])); 142 CPPUNIT_ASSERT(!la3->isContained(2*unitVec[0])); 143 144 CPPUNIT_ASSERT(!la1->isContained(-1*unitVec[1])); 145 CPPUNIT_ASSERT(!la2->isContained(-1*unitVec[2])); 146 CPPUNIT_ASSERT(!la3->isContained(-1*unitVec[0])); 147 147 148 148 // For the plane lines 149 CPPUNIT_ASSERT(lp1->isContained( e1));150 CPPUNIT_ASSERT(lp2->isContained( e2));151 CPPUNIT_ASSERT(lp3->isContained( e3));152 153 CPPUNIT_ASSERT(lp1->isContained( e2));154 CPPUNIT_ASSERT(lp2->isContained( e3));155 CPPUNIT_ASSERT(lp3->isContained( e1));156 157 CPPUNIT_ASSERT(lp1->isContained( e1+2*(e1-e2)));158 CPPUNIT_ASSERT(lp2->isContained( e2+2*(e2-e3)));159 CPPUNIT_ASSERT(lp3->isContained( e3+2*(e3-e1)));160 161 CPPUNIT_ASSERT(lp1->isContained( e1-2*(e1-e2)));162 CPPUNIT_ASSERT(lp2->isContained( e2-2*(e2-e3)));163 CPPUNIT_ASSERT(lp3->isContained( e3-2*(e3-e1)));149 CPPUNIT_ASSERT(lp1->isContained(unitVec[0])); 150 CPPUNIT_ASSERT(lp2->isContained(unitVec[1])); 151 CPPUNIT_ASSERT(lp3->isContained(unitVec[2])); 152 153 CPPUNIT_ASSERT(lp1->isContained(unitVec[1])); 154 CPPUNIT_ASSERT(lp2->isContained(unitVec[2])); 155 CPPUNIT_ASSERT(lp3->isContained(unitVec[0])); 156 157 CPPUNIT_ASSERT(lp1->isContained(unitVec[0]+2*(unitVec[0]-unitVec[1]))); 158 CPPUNIT_ASSERT(lp2->isContained(unitVec[1]+2*(unitVec[1]-unitVec[2]))); 159 CPPUNIT_ASSERT(lp3->isContained(unitVec[2]+2*(unitVec[2]-unitVec[0]))); 160 161 CPPUNIT_ASSERT(lp1->isContained(unitVec[0]-2*(unitVec[0]-unitVec[1]))); 162 CPPUNIT_ASSERT(lp2->isContained(unitVec[1]-2*(unitVec[1]-unitVec[2]))); 163 CPPUNIT_ASSERT(lp3->isContained(unitVec[2]-2*(unitVec[2]-unitVec[0]))); 164 164 } 165 165 … … 177 177 // axes and plane lines 178 178 fixture = la1->getIntersection(*lp1); 179 CPPUNIT_ASSERT_EQUAL(fixture, e1);179 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 180 180 fixture = la2->getIntersection(*lp2); 181 CPPUNIT_ASSERT_EQUAL(fixture, e2);181 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 182 182 fixture = la3->getIntersection(*lp3); 183 CPPUNIT_ASSERT_EQUAL(fixture, e3);183 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 184 184 185 185 fixture = la1->getIntersection(*lp3); 186 CPPUNIT_ASSERT_EQUAL(fixture, e1);186 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 187 187 fixture = la2->getIntersection(*lp1); 188 CPPUNIT_ASSERT_EQUAL(fixture, e2);188 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 189 189 fixture = la3->getIntersection(*lp2); 190 CPPUNIT_ASSERT_EQUAL(fixture, e3);190 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 191 191 192 192 // two plane lines 193 193 fixture = lp1->getIntersection(*lp2); 194 CPPUNIT_ASSERT_EQUAL(fixture, e2);194 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 195 195 fixture = lp2->getIntersection(*lp3); 196 CPPUNIT_ASSERT_EQUAL(fixture, e3);196 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 197 197 fixture = lp3->getIntersection(*lp1); 198 CPPUNIT_ASSERT_EQUAL(fixture, e1);198 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 199 199 200 200 // When we have two times the same line, we check if the point is on the line … … 242 242 243 243 // rotate vectors on the axis around their lines 244 fixture = la1->rotateVector( e1,1.);245 CPPUNIT_ASSERT_EQUAL(fixture, e1);246 fixture = la2->rotateVector( e2,1.);247 CPPUNIT_ASSERT_EQUAL(fixture, e2);248 fixture = la3->rotateVector( e3,1.);249 CPPUNIT_ASSERT_EQUAL(fixture, e3);250 251 fixture = la1->rotateVector( e1,2.);252 CPPUNIT_ASSERT_EQUAL(fixture, e1);253 fixture = la2->rotateVector( e2,2.);254 CPPUNIT_ASSERT_EQUAL(fixture, e2);255 fixture = la3->rotateVector( e3,2.);256 CPPUNIT_ASSERT_EQUAL(fixture, e3);244 fixture = la1->rotateVector(unitVec[0],1.); 245 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 246 fixture = la2->rotateVector(unitVec[1],1.); 247 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 248 fixture = la3->rotateVector(unitVec[2],1.); 249 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 250 251 fixture = la1->rotateVector(unitVec[0],2.); 252 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 253 fixture = la2->rotateVector(unitVec[1],2.); 254 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 255 fixture = la3->rotateVector(unitVec[2],2.); 256 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 257 257 258 258 // more vectors on the axis 259 fixture = la1->rotateVector(2* e1,1.);260 CPPUNIT_ASSERT_EQUAL(fixture,2* e1);261 fixture = la2->rotateVector(2* e2,1.);262 CPPUNIT_ASSERT_EQUAL(fixture,2* e2);263 fixture = la3->rotateVector(2* e3,1.);264 CPPUNIT_ASSERT_EQUAL(fixture,2* e3);265 266 fixture = la1->rotateVector(2* e1,2.);267 CPPUNIT_ASSERT_EQUAL(fixture,2* e1);268 fixture = la2->rotateVector(2* e2,2.);269 CPPUNIT_ASSERT_EQUAL(fixture,2* e2);270 fixture = la3->rotateVector(2* e3,2.);271 CPPUNIT_ASSERT_EQUAL(fixture,2* e3);259 fixture = la1->rotateVector(2*unitVec[0],1.); 260 CPPUNIT_ASSERT_EQUAL(fixture,2*unitVec[0]); 261 fixture = la2->rotateVector(2*unitVec[1],1.); 262 CPPUNIT_ASSERT_EQUAL(fixture,2*unitVec[1]); 263 fixture = la3->rotateVector(2*unitVec[2],1.); 264 CPPUNIT_ASSERT_EQUAL(fixture,2*unitVec[2]); 265 266 fixture = la1->rotateVector(2*unitVec[0],2.); 267 CPPUNIT_ASSERT_EQUAL(fixture,2*unitVec[0]); 268 fixture = la2->rotateVector(2*unitVec[1],2.); 269 CPPUNIT_ASSERT_EQUAL(fixture,2*unitVec[1]); 270 fixture = la3->rotateVector(2*unitVec[2],2.); 271 CPPUNIT_ASSERT_EQUAL(fixture,2*unitVec[2]); 272 272 273 273 // negative factors 274 fixture = la1->rotateVector(-1* e1,1.);275 CPPUNIT_ASSERT_EQUAL(fixture,-1* e1);276 fixture = la2->rotateVector(-1* e2,1.);277 CPPUNIT_ASSERT_EQUAL(fixture,-1* e2);278 fixture = la3->rotateVector(-1* e3,1.);279 CPPUNIT_ASSERT_EQUAL(fixture,-1* e3);280 281 fixture = la1->rotateVector(-1* e1,2.);282 CPPUNIT_ASSERT_EQUAL(fixture,-1* e1);283 fixture = la2->rotateVector(-1* e2,2.);284 CPPUNIT_ASSERT_EQUAL(fixture,-1* e2);285 fixture = la3->rotateVector(-1* e3,2.);286 CPPUNIT_ASSERT_EQUAL(fixture,-1* e3);274 fixture = la1->rotateVector(-1*unitVec[0],1.); 275 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[0]); 276 fixture = la2->rotateVector(-1*unitVec[1],1.); 277 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[1]); 278 fixture = la3->rotateVector(-1*unitVec[2],1.); 279 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[2]); 280 281 fixture = la1->rotateVector(-1*unitVec[0],2.); 282 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[0]); 283 fixture = la2->rotateVector(-1*unitVec[1],2.); 284 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[1]); 285 fixture = la3->rotateVector(-1*unitVec[2],2.); 286 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[2]); 287 287 288 288 289 289 290 290 // now the real rotations 291 // e2 around e1292 fixture = la1->rotateVector( e2,0);293 CPPUNIT_ASSERT_EQUAL(fixture, e2);294 fixture = la1->rotateVector( e2,1./2.*M_PI);295 CPPUNIT_ASSERT_EQUAL(fixture,-1* e3);296 fixture = la1->rotateVector( e2,M_PI);297 CPPUNIT_ASSERT_EQUAL(fixture,-1* e2);298 fixture = la1->rotateVector( e2,2*M_PI);299 CPPUNIT_ASSERT_EQUAL(fixture, e2);300 301 // e3 around e2302 fixture = la2->rotateVector( e3,0);303 CPPUNIT_ASSERT_EQUAL(fixture, e3);304 fixture = la2->rotateVector( e3,1./2.*M_PI);305 CPPUNIT_ASSERT_EQUAL(fixture,-1* e1);306 fixture = la2->rotateVector( e3,M_PI);307 CPPUNIT_ASSERT_EQUAL(fixture,-1* e3);308 fixture = la2->rotateVector( e3,2*M_PI);309 CPPUNIT_ASSERT_EQUAL(fixture, e3);310 311 // e1 around e3312 fixture = la3->rotateVector( e1,0);313 CPPUNIT_ASSERT_EQUAL(fixture, e1);314 fixture = la3->rotateVector( e1,1./2.*M_PI);315 CPPUNIT_ASSERT_EQUAL(fixture,-1* e2);316 fixture = la3->rotateVector( e1,M_PI);317 CPPUNIT_ASSERT_EQUAL(fixture,-1* e1);318 fixture = la3->rotateVector( e1,2*M_PI);319 CPPUNIT_ASSERT_EQUAL(fixture, e1);291 // unitVec[1] around unitVec[0] 292 fixture = la1->rotateVector(unitVec[1],0); 293 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 294 fixture = la1->rotateVector(unitVec[1],1./2.*M_PI); 295 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[2]); 296 fixture = la1->rotateVector(unitVec[1],M_PI); 297 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[1]); 298 fixture = la1->rotateVector(unitVec[1],2*M_PI); 299 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 300 301 // unitVec[2] around unitVec[1] 302 fixture = la2->rotateVector(unitVec[2],0); 303 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 304 fixture = la2->rotateVector(unitVec[2],1./2.*M_PI); 305 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[0]); 306 fixture = la2->rotateVector(unitVec[2],M_PI); 307 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[2]); 308 fixture = la2->rotateVector(unitVec[2],2*M_PI); 309 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 310 311 // unitVec[0] around unitVec[2] 312 fixture = la3->rotateVector(unitVec[0],0); 313 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 314 fixture = la3->rotateVector(unitVec[0],1./2.*M_PI); 315 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[1]); 316 fixture = la3->rotateVector(unitVec[0],M_PI); 317 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[0]); 318 fixture = la3->rotateVector(unitVec[0],2*M_PI); 319 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 320 320 321 321 … … 323 323 324 324 // Vectors on the line 325 fixture = lp1->rotateVector( e1,1.);326 CPPUNIT_ASSERT_EQUAL(fixture, e1);327 fixture = lp1->rotateVector( e2,1.);328 CPPUNIT_ASSERT_EQUAL(fixture, e2);329 330 fixture = lp2->rotateVector( e2,1.);331 CPPUNIT_ASSERT_EQUAL(fixture, e2);332 fixture = lp2->rotateVector( e3,1.);333 CPPUNIT_ASSERT_EQUAL(fixture, e3);334 335 fixture = lp3->rotateVector( e3,1.);336 CPPUNIT_ASSERT_EQUAL(fixture, e3);337 fixture = lp3->rotateVector( e1,1.);338 CPPUNIT_ASSERT_EQUAL(fixture, e1);325 fixture = lp1->rotateVector(unitVec[0],1.); 326 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 327 fixture = lp1->rotateVector(unitVec[1],1.); 328 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 329 330 fixture = lp2->rotateVector(unitVec[1],1.); 331 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 332 fixture = lp2->rotateVector(unitVec[2],1.); 333 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 334 335 fixture = lp3->rotateVector(unitVec[2],1.); 336 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 337 fixture = lp3->rotateVector(unitVec[0],1.); 338 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 339 339 340 340 // the real stuff … … 358 358 std::vector<Vector> res = la1->getSphereIntersections(); 359 359 CPPUNIT_ASSERT_EQUAL(res.size(),(size_t)2); 360 CPPUNIT_ASSERT(testDirection(res[0], e1));361 CPPUNIT_ASSERT(testDirection(res[1], e1));360 CPPUNIT_ASSERT(testDirection(res[0],unitVec[0])); 361 CPPUNIT_ASSERT(testDirection(res[1],unitVec[0])); 362 362 CPPUNIT_ASSERT(res[0]!=res[1]); 363 363 } … … 366 366 std::vector<Vector> res = la2->getSphereIntersections(); 367 367 CPPUNIT_ASSERT_EQUAL(res.size(),(size_t)2); 368 CPPUNIT_ASSERT(testDirection(res[0], e2));369 CPPUNIT_ASSERT(testDirection(res[1], e2));368 CPPUNIT_ASSERT(testDirection(res[0],unitVec[1])); 369 CPPUNIT_ASSERT(testDirection(res[1],unitVec[1])); 370 370 CPPUNIT_ASSERT(res[0]!=res[1]); 371 371 } … … 374 374 std::vector<Vector> res = la3->getSphereIntersections(); 375 375 CPPUNIT_ASSERT_EQUAL(res.size(),(size_t)2); 376 CPPUNIT_ASSERT(testDirection(res[0], e3));377 CPPUNIT_ASSERT(testDirection(res[1], e3));376 CPPUNIT_ASSERT(testDirection(res[0],unitVec[2])); 377 CPPUNIT_ASSERT(testDirection(res[1],unitVec[2])); 378 378 CPPUNIT_ASSERT(res[0]!=res[1]); 379 379 } … … 382 382 std::vector<Vector> res = lp1->getSphereIntersections(); 383 383 CPPUNIT_ASSERT_EQUAL(res.size(),(size_t)2); 384 CPPUNIT_ASSERT((res[0]== e1) || (res[0]==e2));385 CPPUNIT_ASSERT((res[1]== e1) || (res[1]==e2));384 CPPUNIT_ASSERT((res[0]==unitVec[0]) || (res[0]==unitVec[1])); 385 CPPUNIT_ASSERT((res[1]==unitVec[0]) || (res[1]==unitVec[1])); 386 386 CPPUNIT_ASSERT(res[0]!=res[1]); 387 387 } … … 390 390 std::vector<Vector> res = lp2->getSphereIntersections(); 391 391 CPPUNIT_ASSERT_EQUAL(res.size(),(size_t)2); 392 CPPUNIT_ASSERT((res[0]== e2) || (res[0]==e3));393 CPPUNIT_ASSERT((res[1]== e2) || (res[1]==e3));392 CPPUNIT_ASSERT((res[0]==unitVec[1]) || (res[0]==unitVec[2])); 393 CPPUNIT_ASSERT((res[1]==unitVec[1]) || (res[1]==unitVec[2])); 394 394 CPPUNIT_ASSERT(res[0]!=res[1]); 395 395 } … … 398 398 std::vector<Vector> res = lp3->getSphereIntersections(); 399 399 CPPUNIT_ASSERT_EQUAL(res.size(),(size_t)2); 400 CPPUNIT_ASSERT((res[0]== e3) || (res[0]==e1));401 CPPUNIT_ASSERT((res[1]== e3) || (res[1]==e1));402 CPPUNIT_ASSERT(res[0]!=res[1]); 403 } 404 } 400 CPPUNIT_ASSERT((res[0]==unitVec[2]) || (res[0]==unitVec[0])); 401 CPPUNIT_ASSERT((res[1]==unitVec[2]) || (res[1]==unitVec[0])); 402 CPPUNIT_ASSERT(res[0]!=res[1]); 403 } 404 } -
src/unittests/MatrixUnittest.cpp
r7067bd6 r49d3d39 39 39 } 40 40 perm1 = new Matrix(); 41 perm1->column(0) = e1;42 perm1->column(1) = e3;43 perm1->column(2) = e2;41 perm1->column(0) = unitVec[0]; 42 perm1->column(1) = unitVec[2]; 43 perm1->column(2) = unitVec[1]; 44 44 45 45 46 46 perm2 = new Matrix(); 47 perm2->column(0) = e2;48 perm2->column(1) = e1;49 perm2->column(2) = e3;47 perm2->column(0) = unitVec[1]; 48 perm2->column(1) = unitVec[0]; 49 perm2->column(2) = unitVec[2]; 50 50 51 51 perm3 = new Matrix(); 52 perm3->column(0) = e2;53 perm3->column(1) = e3;54 perm3->column(2) = e1;52 perm3->column(0) = unitVec[1]; 53 perm3->column(1) = unitVec[2]; 54 perm3->column(2) = unitVec[0]; 55 55 56 56 perm4 = new Matrix(); 57 perm4->column(0) = e3;58 perm4->column(1) = e2;59 perm4->column(2) = e1;57 perm4->column(0) = unitVec[2]; 58 perm4->column(1) = unitVec[1]; 59 perm4->column(2) = unitVec[0]; 60 60 61 61 perm5 = new Matrix(); 62 perm5->column(0) = e3;63 perm5->column(1) = e1;64 perm5->column(2) = e2;62 perm5->column(0) = unitVec[2]; 63 perm5->column(1) = unitVec[0]; 64 perm5->column(2) = unitVec[1]; 65 65 66 66 } … … 108 108 109 109 mat.one(); 110 CPPUNIT_ASSERT_EQUAL(mat.row(0), e1);111 CPPUNIT_ASSERT_EQUAL(mat.row(1), e2);112 CPPUNIT_ASSERT_EQUAL(mat.row(2), e3);113 CPPUNIT_ASSERT_EQUAL(mat.column(0), e1);114 CPPUNIT_ASSERT_EQUAL(mat.column(1), e2);115 CPPUNIT_ASSERT_EQUAL(mat.column(2), e3);110 CPPUNIT_ASSERT_EQUAL(mat.row(0),unitVec[0]); 111 CPPUNIT_ASSERT_EQUAL(mat.row(1),unitVec[1]); 112 CPPUNIT_ASSERT_EQUAL(mat.row(2),unitVec[2]); 113 CPPUNIT_ASSERT_EQUAL(mat.column(0),unitVec[0]); 114 CPPUNIT_ASSERT_EQUAL(mat.column(1),unitVec[1]); 115 CPPUNIT_ASSERT_EQUAL(mat.column(2),unitVec[2]); 116 116 117 117 Vector t1=Vector(1.,1.,1.); … … 204 204 205 205 res = (*diagonal)*(*perm1); 206 CPPUNIT_ASSERT_EQUAL(res.column(0), e1);207 CPPUNIT_ASSERT_EQUAL(res.column(1),3* e3);208 CPPUNIT_ASSERT_EQUAL(res.column(2),2* e2);206 CPPUNIT_ASSERT_EQUAL(res.column(0),unitVec[0]); 207 CPPUNIT_ASSERT_EQUAL(res.column(1),3*unitVec[2]); 208 CPPUNIT_ASSERT_EQUAL(res.column(2),2*unitVec[1]); 209 209 res = (*diagonal)*(*perm2); 210 CPPUNIT_ASSERT_EQUAL(res.column(0),2* e2);211 CPPUNIT_ASSERT_EQUAL(res.column(1), e1);212 CPPUNIT_ASSERT_EQUAL(res.column(2),3* e3);210 CPPUNIT_ASSERT_EQUAL(res.column(0),2*unitVec[1]); 211 CPPUNIT_ASSERT_EQUAL(res.column(1),unitVec[0]); 212 CPPUNIT_ASSERT_EQUAL(res.column(2),3*unitVec[2]); 213 213 res = (*diagonal)*(*perm3); 214 CPPUNIT_ASSERT_EQUAL(res.column(0),2* e2);215 CPPUNIT_ASSERT_EQUAL(res.column(1),3* e3);216 CPPUNIT_ASSERT_EQUAL(res.column(2), e1);214 CPPUNIT_ASSERT_EQUAL(res.column(0),2*unitVec[1]); 215 CPPUNIT_ASSERT_EQUAL(res.column(1),3*unitVec[2]); 216 CPPUNIT_ASSERT_EQUAL(res.column(2),unitVec[0]); 217 217 res = (*diagonal)*(*perm4); 218 CPPUNIT_ASSERT_EQUAL(res.column(0),3* e3);219 CPPUNIT_ASSERT_EQUAL(res.column(1),2* e2);220 CPPUNIT_ASSERT_EQUAL(res.column(2), e1);218 CPPUNIT_ASSERT_EQUAL(res.column(0),3*unitVec[2]); 219 CPPUNIT_ASSERT_EQUAL(res.column(1),2*unitVec[1]); 220 CPPUNIT_ASSERT_EQUAL(res.column(2),unitVec[0]); 221 221 res = (*diagonal)*(*perm5); 222 CPPUNIT_ASSERT_EQUAL(res.column(0),3* e3);223 CPPUNIT_ASSERT_EQUAL(res.column(1), e1);224 CPPUNIT_ASSERT_EQUAL(res.column(2),2* e2);222 CPPUNIT_ASSERT_EQUAL(res.column(0),3*unitVec[2]); 223 CPPUNIT_ASSERT_EQUAL(res.column(1),unitVec[0]); 224 CPPUNIT_ASSERT_EQUAL(res.column(2),2*unitVec[1]); 225 225 } 226 226 … … 261 261 262 262 void MatrixUnittest::VecMultTest(){ 263 CPPUNIT_ASSERT_EQUAL((*zero)* e1,zeroVec);264 CPPUNIT_ASSERT_EQUAL((*zero)* e2,zeroVec);265 CPPUNIT_ASSERT_EQUAL((*zero)* e3,zeroVec);263 CPPUNIT_ASSERT_EQUAL((*zero)*unitVec[0],zeroVec); 264 CPPUNIT_ASSERT_EQUAL((*zero)*unitVec[1],zeroVec); 265 CPPUNIT_ASSERT_EQUAL((*zero)*unitVec[2],zeroVec); 266 266 CPPUNIT_ASSERT_EQUAL((*zero)*zeroVec,zeroVec); 267 267 268 CPPUNIT_ASSERT_EQUAL((*one)* e1,e1);269 CPPUNIT_ASSERT_EQUAL((*one)* e2,e2);270 CPPUNIT_ASSERT_EQUAL((*one)* e3,e3);268 CPPUNIT_ASSERT_EQUAL((*one)*unitVec[0],unitVec[0]); 269 CPPUNIT_ASSERT_EQUAL((*one)*unitVec[1],unitVec[1]); 270 CPPUNIT_ASSERT_EQUAL((*one)*unitVec[2],unitVec[2]); 271 271 CPPUNIT_ASSERT_EQUAL((*one)*zeroVec,zeroVec); 272 272 273 CPPUNIT_ASSERT_EQUAL((*diagonal)* e1,e1);274 CPPUNIT_ASSERT_EQUAL((*diagonal)* e2,2*e2);275 CPPUNIT_ASSERT_EQUAL((*diagonal)* e3,3*e3);273 CPPUNIT_ASSERT_EQUAL((*diagonal)*unitVec[0],unitVec[0]); 274 CPPUNIT_ASSERT_EQUAL((*diagonal)*unitVec[1],2*unitVec[1]); 275 CPPUNIT_ASSERT_EQUAL((*diagonal)*unitVec[2],3*unitVec[2]); 276 276 CPPUNIT_ASSERT_EQUAL((*diagonal)*zeroVec,zeroVec); 277 277 278 CPPUNIT_ASSERT_EQUAL((*perm1)* e1,e1);279 CPPUNIT_ASSERT_EQUAL((*perm1)* e2,e3);280 CPPUNIT_ASSERT_EQUAL((*perm1)* e3,e2);278 CPPUNIT_ASSERT_EQUAL((*perm1)*unitVec[0],unitVec[0]); 279 CPPUNIT_ASSERT_EQUAL((*perm1)*unitVec[1],unitVec[2]); 280 CPPUNIT_ASSERT_EQUAL((*perm1)*unitVec[2],unitVec[1]); 281 281 CPPUNIT_ASSERT_EQUAL((*perm1)*zeroVec,zeroVec); 282 282 283 CPPUNIT_ASSERT_EQUAL((*perm2)* e1,e2);284 CPPUNIT_ASSERT_EQUAL((*perm2)* e2,e1);285 CPPUNIT_ASSERT_EQUAL((*perm2)* e3,e3);283 CPPUNIT_ASSERT_EQUAL((*perm2)*unitVec[0],unitVec[1]); 284 CPPUNIT_ASSERT_EQUAL((*perm2)*unitVec[1],unitVec[0]); 285 CPPUNIT_ASSERT_EQUAL((*perm2)*unitVec[2],unitVec[2]); 286 286 CPPUNIT_ASSERT_EQUAL((*perm2)*zeroVec,zeroVec); 287 287 288 CPPUNIT_ASSERT_EQUAL((*perm3)* e1,e2);289 CPPUNIT_ASSERT_EQUAL((*perm3)* e2,e3);290 CPPUNIT_ASSERT_EQUAL((*perm3)* e3,e1);288 CPPUNIT_ASSERT_EQUAL((*perm3)*unitVec[0],unitVec[1]); 289 CPPUNIT_ASSERT_EQUAL((*perm3)*unitVec[1],unitVec[2]); 290 CPPUNIT_ASSERT_EQUAL((*perm3)*unitVec[2],unitVec[0]); 291 291 CPPUNIT_ASSERT_EQUAL((*perm3)*zeroVec,zeroVec); 292 292 293 CPPUNIT_ASSERT_EQUAL((*perm4)* e1,e3);294 CPPUNIT_ASSERT_EQUAL((*perm4)* e2,e2);295 CPPUNIT_ASSERT_EQUAL((*perm4)* e3,e1);293 CPPUNIT_ASSERT_EQUAL((*perm4)*unitVec[0],unitVec[2]); 294 CPPUNIT_ASSERT_EQUAL((*perm4)*unitVec[1],unitVec[1]); 295 CPPUNIT_ASSERT_EQUAL((*perm4)*unitVec[2],unitVec[0]); 296 296 CPPUNIT_ASSERT_EQUAL((*perm4)*zeroVec,zeroVec); 297 297 298 CPPUNIT_ASSERT_EQUAL((*perm5)* e1,e3);299 CPPUNIT_ASSERT_EQUAL((*perm5)* e2,e1);300 CPPUNIT_ASSERT_EQUAL((*perm5)* e3,e2);298 CPPUNIT_ASSERT_EQUAL((*perm5)*unitVec[0],unitVec[2]); 299 CPPUNIT_ASSERT_EQUAL((*perm5)*unitVec[1],unitVec[0]); 300 CPPUNIT_ASSERT_EQUAL((*perm5)*unitVec[2],unitVec[1]); 301 301 CPPUNIT_ASSERT_EQUAL((*perm5)*zeroVec,zeroVec); 302 302 -
src/unittests/PlaneUnittest.cpp
r7067bd6 r49d3d39 24 24 25 25 void PlaneUnittest::setUp(){ 26 p1 = new Plane( e1,e2,e3);27 p2 = new Plane( e1,e2,zeroVec);28 p3 = new Plane( e1,zeroVec,e3);29 p4 = new Plane(zeroVec, e2,e3);26 p1 = new Plane(unitVec[0],unitVec[1],unitVec[2]); 27 p2 = new Plane(unitVec[0],unitVec[1],zeroVec); 28 p3 = new Plane(unitVec[0],zeroVec,unitVec[2]); 29 p4 = new Plane(zeroVec,unitVec[1],unitVec[2]); 30 30 } 31 31 … … 42 42 43 43 // three points 44 CPPUNIT_ASSERT_NO_THROW(Plane( e1,e2,e3));44 CPPUNIT_ASSERT_NO_THROW(Plane(unitVec[0],unitVec[1],unitVec[2])); 45 45 // when only two points are differnt this gives an error 46 CPPUNIT_ASSERT_THROW(Plane( e1,e2,e2),LinearDependenceException);46 CPPUNIT_ASSERT_THROW(Plane(unitVec[0],unitVec[1],unitVec[1]),LinearDependenceException); 47 47 // same with only one point 48 CPPUNIT_ASSERT_THROW(Plane( e1,e1,e1),LinearDependenceException);48 CPPUNIT_ASSERT_THROW(Plane(unitVec[0],unitVec[0],unitVec[0]),LinearDependenceException); 49 49 50 50 // use two vector giving two directions 51 CPPUNIT_ASSERT_NO_THROW(Plane( e1,e2,0));51 CPPUNIT_ASSERT_NO_THROW(Plane(unitVec[0],unitVec[1],0)); 52 52 // and again this is actually only one vector 53 CPPUNIT_ASSERT_THROW(Plane( e1,e1,0),LinearDependenceException);53 CPPUNIT_ASSERT_THROW(Plane(unitVec[0],unitVec[0],0),LinearDependenceException); 54 54 // Zero vector does not give a good direction 55 CPPUNIT_ASSERT_THROW(Plane( e1,zeroVec,0),ZeroVectorException);55 CPPUNIT_ASSERT_THROW(Plane(unitVec[0],zeroVec,0),ZeroVectorException); 56 56 57 57 // use a normalvector and an scalar offset 58 CPPUNIT_ASSERT_NO_THROW(Plane( e1,0));58 CPPUNIT_ASSERT_NO_THROW(Plane(unitVec[0],0)); 59 59 // The zero vector is no good as a normalvector 60 60 CPPUNIT_ASSERT_THROW(Plane(zeroVec,0),ZeroVectorException); 61 61 62 62 // use a normalvector and an offset vector 63 CPPUNIT_ASSERT_NO_THROW(Plane( e1,zeroVec));63 CPPUNIT_ASSERT_NO_THROW(Plane(unitVec[0],zeroVec)); 64 64 // and the bad zeroVector again 65 65 CPPUNIT_ASSERT_THROW(Plane(zeroVec,zeroVec),ZeroVectorException); … … 75 75 { 76 76 // construct with three points on plane 77 Plane p1( e1,e2,zeroVec);78 CPPUNIT_ASSERT(testNormal( e3,p1.getNormal()));77 Plane p1(unitVec[0],unitVec[1],zeroVec); 78 CPPUNIT_ASSERT(testNormal(unitVec[2],p1.getNormal())); 79 79 CPPUNIT_ASSERT_EQUAL(0.,p1.getOffset()); 80 80 81 Plane p2( e1,e3,zeroVec);82 CPPUNIT_ASSERT(testNormal( e2,p2.getNormal()));81 Plane p2(unitVec[0],unitVec[2],zeroVec); 82 CPPUNIT_ASSERT(testNormal(unitVec[1],p2.getNormal())); 83 83 CPPUNIT_ASSERT_EQUAL(0.,p2.getOffset()); 84 84 85 Plane p3( e2,e3,zeroVec);86 CPPUNIT_ASSERT(testNormal( e1,p3.getNormal()));85 Plane p3(unitVec[1],unitVec[2],zeroVec); 86 CPPUNIT_ASSERT(testNormal(unitVec[0],p3.getNormal())); 87 87 CPPUNIT_ASSERT_EQUAL(0.,p3.getOffset()); 88 88 } 89 89 { 90 90 // construct with two directions + offset 91 Plane p1( e1,e2,0);92 CPPUNIT_ASSERT(testNormal( e3,p1.getNormal()));91 Plane p1(unitVec[0],unitVec[1],0); 92 CPPUNIT_ASSERT(testNormal(unitVec[2],p1.getNormal())); 93 93 CPPUNIT_ASSERT_EQUAL(0.,p1.getOffset()); 94 94 95 Plane p2( e1,e3,0);96 CPPUNIT_ASSERT(testNormal( e2,p2.getNormal()));95 Plane p2(unitVec[0],unitVec[2],0); 96 CPPUNIT_ASSERT(testNormal(unitVec[1],p2.getNormal())); 97 97 CPPUNIT_ASSERT_EQUAL(0.,p2.getOffset()); 98 98 99 Plane p3( e2,e3,0);100 CPPUNIT_ASSERT(testNormal( e1,p3.getNormal()));99 Plane p3(unitVec[1],unitVec[2],0); 100 CPPUNIT_ASSERT(testNormal(unitVec[0],p3.getNormal())); 101 101 CPPUNIT_ASSERT_EQUAL(0.,p3.getOffset()); 102 102 } … … 145 145 void PlaneUnittest::operationsTest(){ 146 146 { 147 Vector t = (1./3.)*( e1+e2+e3);147 Vector t = (1./3.)*(unitVec[0]+unitVec[1]+unitVec[2]); 148 148 CPPUNIT_ASSERT(fabs(p1->distance(zeroVec)-t.Norm()) < MYEPSILON); 149 149 CPPUNIT_ASSERT_EQUAL(t,p1->getClosestPoint(zeroVec)); 150 150 } 151 151 152 CPPUNIT_ASSERT(fabs(p2->distance( e3)-1) < MYEPSILON);153 CPPUNIT_ASSERT_EQUAL(zeroVec,p2->getClosestPoint( e3));154 CPPUNIT_ASSERT(fabs(p3->distance( e2)-1) < MYEPSILON);155 CPPUNIT_ASSERT_EQUAL(zeroVec,p3->getClosestPoint( e2));156 CPPUNIT_ASSERT(fabs(p4->distance( e1)-1) < MYEPSILON);157 CPPUNIT_ASSERT_EQUAL(zeroVec,p4->getClosestPoint( e1));152 CPPUNIT_ASSERT(fabs(p2->distance(unitVec[2])-1) < MYEPSILON); 153 CPPUNIT_ASSERT_EQUAL(zeroVec,p2->getClosestPoint(unitVec[2])); 154 CPPUNIT_ASSERT(fabs(p3->distance(unitVec[1])-1) < MYEPSILON); 155 CPPUNIT_ASSERT_EQUAL(zeroVec,p3->getClosestPoint(unitVec[1])); 156 CPPUNIT_ASSERT(fabs(p4->distance(unitVec[0])-1) < MYEPSILON); 157 CPPUNIT_ASSERT_EQUAL(zeroVec,p4->getClosestPoint(unitVec[0])); 158 158 } 159 159 … … 162 162 163 163 // some Vectors that lie on the planes 164 fixture = p1->mirrorVector( e1);165 CPPUNIT_ASSERT_EQUAL(fixture, e1);166 fixture = p1->mirrorVector( e2);167 CPPUNIT_ASSERT_EQUAL(fixture, e2);168 fixture = p1->mirrorVector( e3);169 CPPUNIT_ASSERT_EQUAL(fixture, e3);164 fixture = p1->mirrorVector(unitVec[0]); 165 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 166 fixture = p1->mirrorVector(unitVec[1]); 167 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 168 fixture = p1->mirrorVector(unitVec[2]); 169 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 170 170 171 171 fixture = p2->mirrorVector(zeroVec); 172 172 CPPUNIT_ASSERT_EQUAL(fixture,zeroVec); 173 fixture = p2->mirrorVector( e1);174 CPPUNIT_ASSERT_EQUAL(fixture, e1);175 fixture = p2->mirrorVector( e2);176 CPPUNIT_ASSERT_EQUAL(fixture, e2);173 fixture = p2->mirrorVector(unitVec[0]); 174 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 175 fixture = p2->mirrorVector(unitVec[1]); 176 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 177 177 178 178 fixture = p3->mirrorVector(zeroVec); 179 179 CPPUNIT_ASSERT_EQUAL(fixture,zeroVec); 180 fixture = p3->mirrorVector( e1);181 CPPUNIT_ASSERT_EQUAL(fixture, e1);182 fixture = p3->mirrorVector( e3);183 CPPUNIT_ASSERT_EQUAL(fixture, e3);180 fixture = p3->mirrorVector(unitVec[0]); 181 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[0]); 182 fixture = p3->mirrorVector(unitVec[2]); 183 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 184 184 185 185 fixture = p4->mirrorVector(zeroVec); 186 186 CPPUNIT_ASSERT_EQUAL(fixture,zeroVec); 187 fixture = p4->mirrorVector( e2);188 CPPUNIT_ASSERT_EQUAL(fixture, e2);189 fixture = p4->mirrorVector( e3);190 CPPUNIT_ASSERT_EQUAL(fixture, e3);187 fixture = p4->mirrorVector(unitVec[1]); 188 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[1]); 189 fixture = p4->mirrorVector(unitVec[2]); 190 CPPUNIT_ASSERT_EQUAL(fixture,unitVec[2]); 191 191 192 192 // some Vectors outside of the planes 193 193 { 194 Vector t = (2./3.)*( e1+e2+e3);194 Vector t = (2./3.)*(unitVec[0]+unitVec[1]+unitVec[2]); 195 195 fixture = p1->mirrorVector(zeroVec); 196 196 CPPUNIT_ASSERT_EQUAL(fixture,t); 197 197 } 198 198 199 fixture = p2->mirrorVector( e3);200 CPPUNIT_ASSERT_EQUAL(fixture,-1* e3);201 fixture = p3->mirrorVector( e2);202 CPPUNIT_ASSERT_EQUAL(fixture,-1* e2);203 fixture = p4->mirrorVector( e1);204 CPPUNIT_ASSERT_EQUAL(fixture,-1* e1);199 fixture = p2->mirrorVector(unitVec[2]); 200 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[2]); 201 fixture = p3->mirrorVector(unitVec[1]); 202 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[1]); 203 fixture = p4->mirrorVector(unitVec[0]); 204 CPPUNIT_ASSERT_EQUAL(fixture,-1*unitVec[0]); 205 205 } 206 206 … … 209 209 // plane at (0,0,0) normal to (1,0,0) cuts line from (0,0,0) to (2,1,0) at ??? 210 210 Line l1 = makeLineThrough(zeroVec,Vector(2,1,0)); 211 CPPUNIT_ASSERT_NO_THROW(fixture = Plane( e1, zeroVec).GetIntersection(l1) );211 CPPUNIT_ASSERT_NO_THROW(fixture = Plane(unitVec[0], zeroVec).GetIntersection(l1) ); 212 212 CPPUNIT_ASSERT_EQUAL( zeroVec, fixture ); 213 213 214 214 // plane at (2,1,0) normal to (0,1,0) cuts line from (1,0,0) to (0,1,1) at ??? 215 Line l2 = makeLineThrough( e1,Vector(0,1,1));216 CPPUNIT_ASSERT_NO_THROW(fixture = Plane( e2, Vector(2,1,0)).GetIntersection(l2) );215 Line l2 = makeLineThrough(unitVec[0],Vector(0,1,1)); 216 CPPUNIT_ASSERT_NO_THROW(fixture = Plane(unitVec[1], Vector(2,1,0)).GetIntersection(l2) ); 217 217 CPPUNIT_ASSERT_EQUAL( Vector(0., 1., 1.), fixture ); 218 218 } -
src/unittests/ShapeUnittest.cpp
r7067bd6 r49d3d39 17 17 18 18 #include "Shapes/Shape.hpp" 19 #include "Shapes/BaseShapes.hpp" 19 20 #include "vector.cpp" 20 21 … … 24 25 void ShapeUnittest::setUp() 25 26 { 26 v000 = 0* e1+0*e2+0*e3;27 v100 = 1* e1+0*e2+0*e3;28 v200 = -1* e1+0*e2+0*e3;29 v010 = 0* e1+1*e2+0*e3;30 v110 = 1* e1+1*e2+0*e3;31 v210 = -1* e1+1*e2+0*e3;32 v020 = 0* e1-1*e2+0*e3;33 v120 = 1* e1-1*e2+0*e3;34 v220 = -1* e1-1*e2+0*e3;35 v001 = 0* e1+0*e2+1*e3;36 v101 = 1* e1+0*e2+1*e3;37 v201 = -1* e1+0*e2+1*e3;38 v011 = 0* e1+1*e2+1*e3;39 v111 = 1* e1+1*e2+1*e3;40 v211 = -1* e1+1*e2+1*e3;41 v021 = 0* e1-1*e2+1*e3;42 v121 = 1* e1-1*e2+1*e3;43 v221 = -1* e1-1*e2+1*e3;44 v002 = 0* e1+0*e2-1*e3;45 v102 = 1* e1+0*e2-1*e3;46 v202 = -1* e1+0*e2-1*e3;47 v012 = 0* e1+1*e2-1*e3;48 v112 = 1* e1+1*e2-1*e3;49 v212 = -1* e1+1*e2-1*e3;50 v022 = 0* e1-1*e2-1*e3;51 v122 = 1* e1-1*e2-1*e3;52 v222 = -1* e1-1*e2-1*e3;27 v000 = 0*unitVec[0]+0*unitVec[1]+0*unitVec[2]; 28 v100 = 1*unitVec[0]+0*unitVec[1]+0*unitVec[2]; 29 v200 = -1*unitVec[0]+0*unitVec[1]+0*unitVec[2]; 30 v010 = 0*unitVec[0]+1*unitVec[1]+0*unitVec[2]; 31 v110 = 1*unitVec[0]+1*unitVec[1]+0*unitVec[2]; 32 v210 = -1*unitVec[0]+1*unitVec[1]+0*unitVec[2]; 33 v020 = 0*unitVec[0]-1*unitVec[1]+0*unitVec[2]; 34 v120 = 1*unitVec[0]-1*unitVec[1]+0*unitVec[2]; 35 v220 = -1*unitVec[0]-1*unitVec[1]+0*unitVec[2]; 36 v001 = 0*unitVec[0]+0*unitVec[1]+1*unitVec[2]; 37 v101 = 1*unitVec[0]+0*unitVec[1]+1*unitVec[2]; 38 v201 = -1*unitVec[0]+0*unitVec[1]+1*unitVec[2]; 39 v011 = 0*unitVec[0]+1*unitVec[1]+1*unitVec[2]; 40 v111 = 1*unitVec[0]+1*unitVec[1]+1*unitVec[2]; 41 v211 = -1*unitVec[0]+1*unitVec[1]+1*unitVec[2]; 42 v021 = 0*unitVec[0]-1*unitVec[1]+1*unitVec[2]; 43 v121 = 1*unitVec[0]-1*unitVec[1]+1*unitVec[2]; 44 v221 = -1*unitVec[0]-1*unitVec[1]+1*unitVec[2]; 45 v002 = 0*unitVec[0]+0*unitVec[1]-1*unitVec[2]; 46 v102 = 1*unitVec[0]+0*unitVec[1]-1*unitVec[2]; 47 v202 = -1*unitVec[0]+0*unitVec[1]-1*unitVec[2]; 48 v012 = 0*unitVec[0]+1*unitVec[1]-1*unitVec[2]; 49 v112 = 1*unitVec[0]+1*unitVec[1]-1*unitVec[2]; 50 v212 = -1*unitVec[0]+1*unitVec[1]-1*unitVec[2]; 51 v022 = 0*unitVec[0]-1*unitVec[1]-1*unitVec[2]; 52 v122 = 1*unitVec[0]-1*unitVec[1]-1*unitVec[2]; 53 v222 = -1*unitVec[0]-1*unitVec[1]-1*unitVec[2]; 53 54 } 54 55 … … 113 114 CPPUNIT_ASSERT(Everywhere().isInside(v122)); 114 115 CPPUNIT_ASSERT(Everywhere().isInside(v222)); 116 117 CPPUNIT_ASSERT(Cuboid().isInside(v000)); 118 CPPUNIT_ASSERT(Cuboid().isInside(v100)); 119 CPPUNIT_ASSERT(Cuboid().isInside(v200)); 120 CPPUNIT_ASSERT(Cuboid().isInside(v010)); 121 CPPUNIT_ASSERT(Cuboid().isInside(v110)); 122 CPPUNIT_ASSERT(Cuboid().isInside(v210)); 123 CPPUNIT_ASSERT(Cuboid().isInside(v020)); 124 CPPUNIT_ASSERT(Cuboid().isInside(v120)); 125 CPPUNIT_ASSERT(Cuboid().isInside(v220)); 126 CPPUNIT_ASSERT(Cuboid().isInside(v001)); 127 CPPUNIT_ASSERT(Cuboid().isInside(v101)); 128 CPPUNIT_ASSERT(Cuboid().isInside(v201)); 129 CPPUNIT_ASSERT(Cuboid().isInside(v011)); 130 CPPUNIT_ASSERT(Cuboid().isInside(v111)); 131 CPPUNIT_ASSERT(Cuboid().isInside(v211)); 132 CPPUNIT_ASSERT(Cuboid().isInside(v021)); 133 CPPUNIT_ASSERT(Cuboid().isInside(v121)); 134 CPPUNIT_ASSERT(Cuboid().isInside(v221)); 135 CPPUNIT_ASSERT(Cuboid().isInside(v002)); 136 CPPUNIT_ASSERT(Cuboid().isInside(v102)); 137 CPPUNIT_ASSERT(Cuboid().isInside(v202)); 138 CPPUNIT_ASSERT(Cuboid().isInside(v012)); 139 CPPUNIT_ASSERT(Cuboid().isInside(v112)); 140 CPPUNIT_ASSERT(Cuboid().isInside(v212)); 141 CPPUNIT_ASSERT(Cuboid().isInside(v022)); 142 CPPUNIT_ASSERT(Cuboid().isInside(v122)); 143 CPPUNIT_ASSERT(Cuboid().isInside(v222)); 144 145 CPPUNIT_ASSERT(Sphere().isInside(v000)); 146 CPPUNIT_ASSERT(Sphere().isInside(v100)); 147 CPPUNIT_ASSERT(Sphere().isInside(v200)); 148 CPPUNIT_ASSERT(Sphere().isInside(v010)); 149 CPPUNIT_ASSERT(!Sphere().isInside(v110)); 150 CPPUNIT_ASSERT(!Sphere().isInside(v210)); 151 CPPUNIT_ASSERT(Sphere().isInside(v020)); 152 CPPUNIT_ASSERT(!Sphere().isInside(v120)); 153 CPPUNIT_ASSERT(!Sphere().isInside(v220)); 154 CPPUNIT_ASSERT(Sphere().isInside(v001)); 155 CPPUNIT_ASSERT(!Sphere().isInside(v101)); 156 CPPUNIT_ASSERT(!Sphere().isInside(v201)); 157 CPPUNIT_ASSERT(!Sphere().isInside(v011)); 158 CPPUNIT_ASSERT(!Sphere().isInside(v111)); 159 CPPUNIT_ASSERT(!Sphere().isInside(v211)); 160 CPPUNIT_ASSERT(!Sphere().isInside(v021)); 161 CPPUNIT_ASSERT(!Sphere().isInside(v121)); 162 CPPUNIT_ASSERT(!Sphere().isInside(v221)); 163 CPPUNIT_ASSERT(Sphere().isInside(v002)); 164 CPPUNIT_ASSERT(!Sphere().isInside(v102)); 165 CPPUNIT_ASSERT(!Sphere().isInside(v202)); 166 CPPUNIT_ASSERT(!Sphere().isInside(v012)); 167 CPPUNIT_ASSERT(!Sphere().isInside(v112)); 168 CPPUNIT_ASSERT(!Sphere().isInside(v212)); 169 CPPUNIT_ASSERT(!Sphere().isInside(v022)); 170 CPPUNIT_ASSERT(!Sphere().isInside(v122)); 171 CPPUNIT_ASSERT(!Sphere().isInside(v222)); 172 } 173 174 void ShapeUnittest::surfaceTest(){ 175 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v000)); 176 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v100)); 177 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v200)); 178 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v010)); 179 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v110)); 180 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v210)); 181 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v020)); 182 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v120)); 183 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v220)); 184 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v001)); 185 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v101)); 186 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v201)); 187 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v011)); 188 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v111)); 189 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v211)); 190 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v021)); 191 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v121)); 192 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v221)); 193 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v002)); 194 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v102)); 195 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v202)); 196 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v012)); 197 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v112)); 198 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v212)); 199 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v022)); 200 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v122)); 201 CPPUNIT_ASSERT(!Nowhere().isOnSurface(v222)); 202 203 CPPUNIT_ASSERT(!Cuboid().isOnSurface(v000)); 204 CPPUNIT_ASSERT(Cuboid().isOnSurface(v100)); 205 CPPUNIT_ASSERT(Cuboid().isOnSurface(v200)); 206 CPPUNIT_ASSERT(Cuboid().isOnSurface(v010)); 207 CPPUNIT_ASSERT(Cuboid().isOnSurface(v110)); 208 CPPUNIT_ASSERT(Cuboid().isOnSurface(v210)); 209 CPPUNIT_ASSERT(Cuboid().isOnSurface(v020)); 210 CPPUNIT_ASSERT(Cuboid().isOnSurface(v120)); 211 CPPUNIT_ASSERT(Cuboid().isOnSurface(v220)); 212 CPPUNIT_ASSERT(Cuboid().isOnSurface(v001)); 213 CPPUNIT_ASSERT(Cuboid().isOnSurface(v101)); 214 CPPUNIT_ASSERT(Cuboid().isOnSurface(v201)); 215 CPPUNIT_ASSERT(Cuboid().isOnSurface(v011)); 216 CPPUNIT_ASSERT(Cuboid().isOnSurface(v111)); 217 CPPUNIT_ASSERT(Cuboid().isOnSurface(v211)); 218 CPPUNIT_ASSERT(Cuboid().isOnSurface(v021)); 219 CPPUNIT_ASSERT(Cuboid().isOnSurface(v121)); 220 CPPUNIT_ASSERT(Cuboid().isOnSurface(v221)); 221 CPPUNIT_ASSERT(Cuboid().isOnSurface(v002)); 222 CPPUNIT_ASSERT(Cuboid().isOnSurface(v102)); 223 CPPUNIT_ASSERT(Cuboid().isOnSurface(v202)); 224 CPPUNIT_ASSERT(Cuboid().isOnSurface(v012)); 225 CPPUNIT_ASSERT(Cuboid().isOnSurface(v112)); 226 CPPUNIT_ASSERT(Cuboid().isOnSurface(v212)); 227 CPPUNIT_ASSERT(Cuboid().isOnSurface(v022)); 228 CPPUNIT_ASSERT(Cuboid().isOnSurface(v122)); 229 CPPUNIT_ASSERT(Cuboid().isOnSurface(v222)); 230 231 CPPUNIT_ASSERT(!Sphere().isOnSurface(v000)); 232 CPPUNIT_ASSERT(Sphere().isOnSurface(v100)); 233 CPPUNIT_ASSERT(Sphere().isOnSurface(v200)); 234 CPPUNIT_ASSERT(Sphere().isOnSurface(v010)); 235 CPPUNIT_ASSERT(!Sphere().isOnSurface(v110)); 236 CPPUNIT_ASSERT(!Sphere().isOnSurface(v210)); 237 CPPUNIT_ASSERT(Sphere().isOnSurface(v020)); 238 CPPUNIT_ASSERT(!Sphere().isOnSurface(v120)); 239 CPPUNIT_ASSERT(!Sphere().isOnSurface(v220)); 240 CPPUNIT_ASSERT(Sphere().isOnSurface(v001)); 241 CPPUNIT_ASSERT(!Sphere().isOnSurface(v101)); 242 CPPUNIT_ASSERT(!Sphere().isOnSurface(v201)); 243 CPPUNIT_ASSERT(!Sphere().isOnSurface(v011)); 244 CPPUNIT_ASSERT(!Sphere().isOnSurface(v111)); 245 CPPUNIT_ASSERT(!Sphere().isOnSurface(v211)); 246 CPPUNIT_ASSERT(!Sphere().isOnSurface(v021)); 247 CPPUNIT_ASSERT(!Sphere().isOnSurface(v121)); 248 CPPUNIT_ASSERT(!Sphere().isOnSurface(v221)); 249 CPPUNIT_ASSERT(Sphere().isOnSurface(v002)); 250 CPPUNIT_ASSERT(!Sphere().isOnSurface(v102)); 251 CPPUNIT_ASSERT(!Sphere().isOnSurface(v202)); 252 CPPUNIT_ASSERT(!Sphere().isOnSurface(v012)); 253 CPPUNIT_ASSERT(!Sphere().isOnSurface(v112)); 254 CPPUNIT_ASSERT(!Sphere().isOnSurface(v212)); 255 CPPUNIT_ASSERT(!Sphere().isOnSurface(v022)); 256 CPPUNIT_ASSERT(!Sphere().isOnSurface(v122)); 257 CPPUNIT_ASSERT(!Sphere().isOnSurface(v222)); 115 258 } 116 259 … … 360 503 } 361 504 505 { 506 Shape s1 = Sphere() && Cuboid(); // should be the same as Sphere 507 508 CPPUNIT_ASSERT(s1.isInside(v000)); 509 CPPUNIT_ASSERT(s1.isInside(v100)); 510 CPPUNIT_ASSERT(s1.isInside(v200)); 511 CPPUNIT_ASSERT(s1.isInside(v010)); 512 CPPUNIT_ASSERT(!s1.isInside(v110)); 513 CPPUNIT_ASSERT(!s1.isInside(v210)); 514 CPPUNIT_ASSERT(s1.isInside(v020)); 515 CPPUNIT_ASSERT(!s1.isInside(v120)); 516 CPPUNIT_ASSERT(!s1.isInside(v220)); 517 CPPUNIT_ASSERT(s1.isInside(v001)); 518 CPPUNIT_ASSERT(!s1.isInside(v101)); 519 CPPUNIT_ASSERT(!s1.isInside(v201)); 520 CPPUNIT_ASSERT(!s1.isInside(v011)); 521 CPPUNIT_ASSERT(!s1.isInside(v111)); 522 CPPUNIT_ASSERT(!s1.isInside(v211)); 523 CPPUNIT_ASSERT(!s1.isInside(v021)); 524 CPPUNIT_ASSERT(!s1.isInside(v121)); 525 CPPUNIT_ASSERT(!s1.isInside(v221)); 526 CPPUNIT_ASSERT(s1.isInside(v002)); 527 CPPUNIT_ASSERT(!s1.isInside(v102)); 528 CPPUNIT_ASSERT(!s1.isInside(v202)); 529 CPPUNIT_ASSERT(!s1.isInside(v012)); 530 CPPUNIT_ASSERT(!s1.isInside(v112)); 531 CPPUNIT_ASSERT(!s1.isInside(v212)); 532 CPPUNIT_ASSERT(!s1.isInside(v022)); 533 CPPUNIT_ASSERT(!s1.isInside(v122)); 534 CPPUNIT_ASSERT(!s1.isInside(v222)); 535 536 CPPUNIT_ASSERT(!s1.isOnSurface(v000)); 537 CPPUNIT_ASSERT(s1.isOnSurface(v100)); 538 CPPUNIT_ASSERT(s1.isOnSurface(v200)); 539 CPPUNIT_ASSERT(s1.isOnSurface(v010)); 540 CPPUNIT_ASSERT(!s1.isOnSurface(v110)); 541 CPPUNIT_ASSERT(!s1.isOnSurface(v210)); 542 CPPUNIT_ASSERT(s1.isOnSurface(v020)); 543 CPPUNIT_ASSERT(!s1.isOnSurface(v120)); 544 CPPUNIT_ASSERT(!s1.isOnSurface(v220)); 545 CPPUNIT_ASSERT(s1.isOnSurface(v001)); 546 CPPUNIT_ASSERT(!s1.isOnSurface(v101)); 547 CPPUNIT_ASSERT(!s1.isOnSurface(v201)); 548 CPPUNIT_ASSERT(!s1.isOnSurface(v011)); 549 CPPUNIT_ASSERT(!s1.isOnSurface(v111)); 550 CPPUNIT_ASSERT(!s1.isOnSurface(v211)); 551 CPPUNIT_ASSERT(!s1.isOnSurface(v021)); 552 CPPUNIT_ASSERT(!s1.isOnSurface(v121)); 553 CPPUNIT_ASSERT(!s1.isOnSurface(v221)); 554 CPPUNIT_ASSERT(s1.isOnSurface(v002)); 555 CPPUNIT_ASSERT(!s1.isOnSurface(v102)); 556 CPPUNIT_ASSERT(!s1.isOnSurface(v202)); 557 CPPUNIT_ASSERT(!s1.isOnSurface(v012)); 558 CPPUNIT_ASSERT(!s1.isOnSurface(v112)); 559 CPPUNIT_ASSERT(!s1.isOnSurface(v212)); 560 CPPUNIT_ASSERT(!s1.isOnSurface(v022)); 561 CPPUNIT_ASSERT(!s1.isOnSurface(v122)); 562 CPPUNIT_ASSERT(!s1.isOnSurface(v222)); 563 564 565 Shape s2 = Sphere() || Cuboid(); // Should be same as Cuboid 566 567 CPPUNIT_ASSERT(s2.isInside(v000)); 568 CPPUNIT_ASSERT(s2.isInside(v100)); 569 CPPUNIT_ASSERT(s2.isInside(v200)); 570 CPPUNIT_ASSERT(s2.isInside(v010)); 571 CPPUNIT_ASSERT(s2.isInside(v110)); 572 CPPUNIT_ASSERT(s2.isInside(v210)); 573 CPPUNIT_ASSERT(s2.isInside(v020)); 574 CPPUNIT_ASSERT(s2.isInside(v120)); 575 CPPUNIT_ASSERT(s2.isInside(v220)); 576 CPPUNIT_ASSERT(s2.isInside(v001)); 577 CPPUNIT_ASSERT(s2.isInside(v101)); 578 CPPUNIT_ASSERT(s2.isInside(v201)); 579 CPPUNIT_ASSERT(s2.isInside(v011)); 580 CPPUNIT_ASSERT(s2.isInside(v111)); 581 CPPUNIT_ASSERT(s2.isInside(v211)); 582 CPPUNIT_ASSERT(s2.isInside(v021)); 583 CPPUNIT_ASSERT(s2.isInside(v121)); 584 CPPUNIT_ASSERT(s2.isInside(v221)); 585 CPPUNIT_ASSERT(s2.isInside(v002)); 586 CPPUNIT_ASSERT(s2.isInside(v102)); 587 CPPUNIT_ASSERT(s2.isInside(v202)); 588 CPPUNIT_ASSERT(s2.isInside(v012)); 589 CPPUNIT_ASSERT(s2.isInside(v112)); 590 CPPUNIT_ASSERT(s2.isInside(v212)); 591 CPPUNIT_ASSERT(s2.isInside(v022)); 592 CPPUNIT_ASSERT(s2.isInside(v122)); 593 CPPUNIT_ASSERT(s2.isInside(v222)); 594 595 CPPUNIT_ASSERT(!s2.isOnSurface(v000)); 596 CPPUNIT_ASSERT(s2.isOnSurface(v100)); 597 CPPUNIT_ASSERT(s2.isOnSurface(v200)); 598 CPPUNIT_ASSERT(s2.isOnSurface(v010)); 599 CPPUNIT_ASSERT(s2.isOnSurface(v110)); 600 CPPUNIT_ASSERT(s2.isOnSurface(v210)); 601 CPPUNIT_ASSERT(s2.isOnSurface(v020)); 602 CPPUNIT_ASSERT(s2.isOnSurface(v120)); 603 CPPUNIT_ASSERT(s2.isOnSurface(v220)); 604 CPPUNIT_ASSERT(s2.isOnSurface(v001)); 605 CPPUNIT_ASSERT(s2.isOnSurface(v101)); 606 CPPUNIT_ASSERT(s2.isOnSurface(v201)); 607 CPPUNIT_ASSERT(s2.isOnSurface(v011)); 608 CPPUNIT_ASSERT(s2.isOnSurface(v111)); 609 CPPUNIT_ASSERT(s2.isOnSurface(v211)); 610 CPPUNIT_ASSERT(s2.isOnSurface(v021)); 611 CPPUNIT_ASSERT(s2.isOnSurface(v121)); 612 CPPUNIT_ASSERT(s2.isOnSurface(v221)); 613 CPPUNIT_ASSERT(s2.isOnSurface(v002)); 614 CPPUNIT_ASSERT(s2.isOnSurface(v102)); 615 CPPUNIT_ASSERT(s2.isOnSurface(v202)); 616 CPPUNIT_ASSERT(s2.isOnSurface(v012)); 617 CPPUNIT_ASSERT(s2.isOnSurface(v112)); 618 CPPUNIT_ASSERT(s2.isOnSurface(v212)); 619 CPPUNIT_ASSERT(s2.isOnSurface(v022)); 620 CPPUNIT_ASSERT(s2.isOnSurface(v122)); 621 CPPUNIT_ASSERT(s2.isOnSurface(v222)); 622 } 623 362 624 } -
src/unittests/ShapeUnittest.hpp
r7067bd6 r49d3d39 20 20 CPPUNIT_TEST_SUITE( ShapeUnittest) ; 21 21 CPPUNIT_TEST ( baseShapesTest ); 22 CPPUNIT_TEST ( surfaceTest ); 22 23 CPPUNIT_TEST ( assignmentTest ); 23 24 CPPUNIT_TEST ( operatorTest ); … … 29 30 30 31 void baseShapesTest(); 32 void surfaceTest(); 31 33 void assignmentTest(); 32 34 void operatorTest(); -
src/vector.cpp
r7067bd6 r49d3d39 193 193 (*this) *= 1/factor; 194 194 }; 195 196 Vector Vector::getNormalized() const{ 197 Vector res= *this; 198 res.Normalize(); 199 return res; 200 } 195 201 196 202 /** Zeros all components of this vector. … … 534 540 // some comonly used vectors 535 541 const Vector zeroVec(0,0,0); 536 const Vector e1(1,0,0); 537 const Vector e2(0,1,0); 538 const Vector e3(0,0,1); 542 const Vector unitVec[NDIM]={Vector(1,0,0),Vector(0,1,0),Vector(0,0,1)}; -
src/vector.hpp
r7067bd6 r49d3d39 80 80 double NormSquared() const; 81 81 void Normalize(); 82 Vector getNormalized() const; 82 83 void Zero(); 83 84 void One(const double one); … … 106 107 // some commonly used and fixed vectors 107 108 const extern Vector zeroVec; 108 const extern Vector e1; 109 const extern Vector e2; 110 const extern Vector e3; 109 const extern Vector unitVec[NDIM]; 111 110 112 111 ostream & operator << (ostream& ost, const Vector &m);
Note:
See TracChangeset
for help on using the changeset viewer.