[997784] | 1 | /*
|
---|
| 2 | * Shape_impl.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jun 18, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef SHAPE_IMPL_HPP_
|
---|
| 9 | #define SHAPE_IMPL_HPP_
|
---|
| 10 |
|
---|
[56f73b] | 11 | // include config.h
|
---|
| 12 | #ifdef HAVE_CONFIG_H
|
---|
| 13 | #include <config.h>
|
---|
| 14 | #endif
|
---|
| 15 |
|
---|
| 16 |
|
---|
[c5186e] | 17 | #include <vector>
|
---|
| 18 |
|
---|
[997784] | 19 | #include "Shapes/Shape.hpp"
|
---|
[6c438f] | 20 | #include "LinearAlgebra/Line.hpp"
|
---|
| 21 | #include "LinearAlgebra/LineSegment.hpp"
|
---|
| 22 | #include "LinearAlgebra/LineSegmentSet.hpp"
|
---|
| 23 | #include "LinearAlgebra/Vector.hpp"
|
---|
[c6f395] | 24 |
|
---|
[997784] | 25 |
|
---|
| 26 | class Shape_impl {
|
---|
| 27 | public:
|
---|
[e09b70] | 28 | Shape_impl(){};
|
---|
| 29 | virtual ~Shape_impl(){};
|
---|
[997784] | 30 | virtual bool isInside(const Vector &point)=0;
|
---|
[5de9da] | 31 | virtual bool isOnSurface(const Vector &point)=0;
|
---|
| 32 | virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException)=0;
|
---|
[c6f395] | 33 | virtual LineSegmentSet getLineIntersections(const Line&)=0;
|
---|
[cfda65] | 34 | virtual std::string toString()=0;
|
---|
[9c1c89] | 35 | virtual std::vector<Vector> getHomogeneousPointsOnSurface(const size_t N) const=0;
|
---|
[997784] | 36 | };
|
---|
| 37 |
|
---|
| 38 | class Everywhere_impl : public Shape_impl {
|
---|
| 39 | public:
|
---|
| 40 | virtual bool isInside(const Vector &point){
|
---|
| 41 | return true;
|
---|
| 42 | }
|
---|
[5de9da] | 43 | virtual bool isOnSurface(const Vector &point){
|
---|
| 44 | return false;
|
---|
| 45 | }
|
---|
| 46 | virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException){
|
---|
| 47 | throw NotOnSurfaceException(__FILE__,__LINE__);
|
---|
| 48 | }
|
---|
[c6f395] | 49 | virtual LineSegmentSet getLineIntersections(const Line &line){
|
---|
| 50 | LineSegmentSet res(line);
|
---|
| 51 | res.insert(LineSegment(line.negEndpoint(),line.posEndpoint()));
|
---|
| 52 | return res;
|
---|
| 53 | }
|
---|
[cfda65] | 54 | virtual std::string toString(){
|
---|
| 55 | return "Everywhere()";
|
---|
| 56 | }
|
---|
[9c1c89] | 57 | virtual std::vector<Vector> getHomogeneousPointsOnSurface(const size_t N) const {
|
---|
[c5186e] | 58 | std::vector<Vector> PointsOnSurface;
|
---|
| 59 | return PointsOnSurface;
|
---|
| 60 | }
|
---|
[997784] | 61 | };
|
---|
| 62 |
|
---|
| 63 | class Nowhere_impl : public Shape_impl {
|
---|
| 64 | virtual bool isInside(const Vector &point){
|
---|
| 65 | return false;
|
---|
| 66 | }
|
---|
[5de9da] | 67 | virtual bool isOnSurface(const Vector &point){
|
---|
| 68 | return false;
|
---|
| 69 | }
|
---|
| 70 | virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException){
|
---|
| 71 | throw NotOnSurfaceException(__FILE__,__LINE__);
|
---|
| 72 | }
|
---|
[c6f395] | 73 | virtual LineSegmentSet getLineIntersections(const Line &line){
|
---|
| 74 | return LineSegmentSet(line);
|
---|
| 75 | }
|
---|
[cfda65] | 76 | virtual std::string toString(){
|
---|
| 77 | return "Nowhere()";
|
---|
| 78 | }
|
---|
[9c1c89] | 79 | virtual std::vector<Vector> getHomogeneousPointsOnSurface(const size_t N) const {
|
---|
[c5186e] | 80 | std::vector<Vector> PointsOnSurface;
|
---|
| 81 | return PointsOnSurface;
|
---|
| 82 | }
|
---|
[997784] | 83 | };
|
---|
| 84 |
|
---|
| 85 | class AndShape_impl : public Shape_impl {
|
---|
| 86 | public:
|
---|
| 87 | AndShape_impl(const Shape::impl_ptr&, const Shape::impl_ptr&);
|
---|
| 88 | virtual ~AndShape_impl();
|
---|
| 89 | virtual bool isInside(const Vector &point);
|
---|
[5de9da] | 90 | virtual bool isOnSurface(const Vector &point);
|
---|
| 91 | virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException);
|
---|
[c6f395] | 92 | virtual LineSegmentSet getLineIntersections(const Line&);
|
---|
[cfda65] | 93 | virtual std::string toString();
|
---|
[9c1c89] | 94 | virtual std::vector<Vector> getHomogeneousPointsOnSurface(const size_t N) const;
|
---|
[997784] | 95 | private:
|
---|
| 96 | Shape::impl_ptr lhs;
|
---|
| 97 | Shape::impl_ptr rhs;
|
---|
| 98 | };
|
---|
| 99 |
|
---|
| 100 | class OrShape_impl : public Shape_impl {
|
---|
| 101 | public:
|
---|
| 102 | OrShape_impl(const Shape::impl_ptr&, const Shape::impl_ptr&);
|
---|
| 103 | virtual ~OrShape_impl();
|
---|
| 104 | virtual bool isInside(const Vector &point);
|
---|
[5de9da] | 105 | virtual bool isOnSurface(const Vector &point);
|
---|
| 106 | virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException);
|
---|
[c6f395] | 107 | virtual LineSegmentSet getLineIntersections(const Line&);
|
---|
[cfda65] | 108 | virtual std::string toString();
|
---|
[9c1c89] | 109 | virtual std::vector<Vector> getHomogeneousPointsOnSurface(const size_t N) const;
|
---|
[997784] | 110 | private:
|
---|
| 111 | Shape::impl_ptr lhs;
|
---|
| 112 | Shape::impl_ptr rhs;
|
---|
| 113 | };
|
---|
| 114 |
|
---|
| 115 | class NotShape_impl : public Shape_impl {
|
---|
| 116 | public:
|
---|
| 117 | NotShape_impl(const Shape::impl_ptr&);
|
---|
| 118 | virtual ~NotShape_impl();
|
---|
| 119 | virtual bool isInside(const Vector &point);
|
---|
[5de9da] | 120 | virtual bool isOnSurface(const Vector &point);
|
---|
| 121 | virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException);
|
---|
[c6f395] | 122 | virtual LineSegmentSet getLineIntersections(const Line&);
|
---|
[cfda65] | 123 | virtual std::string toString();
|
---|
[9c1c89] | 124 | virtual std::vector<Vector> getHomogeneousPointsOnSurface(const size_t N) const;
|
---|
[997784] | 125 | private:
|
---|
| 126 | Shape::impl_ptr arg;
|
---|
| 127 | };
|
---|
| 128 |
|
---|
[e09b70] | 129 | Shape::impl_ptr getShapeImpl(const Shape&);
|
---|
| 130 |
|
---|
[997784] | 131 | #endif /* SHAPE_IMPL_HPP_ */
|
---|