summaryrefslogtreecommitdiffstats
path: root/libdimensionxx/dimensionxx/object.hpp
blob: 40dcb25aef7867a48d7be30b57a76972ce1620aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*************************************************************************
 * Copyright (C) 2008 Tavian Barnes <tavianator@gmail.com>               *
 *                                                                       *
 * This file is part of The Dimension Library.                           *
 *                                                                       *
 * The Dimension Library is free software; you can redistribute it and/  *
 * or modify it under the terms of the GNU Lesser General Public License *
 * as published by the Free Software Foundation; either version 3 of the *
 * License, or (at your option) any later version.                       *
 *                                                                       *
 * The Dimension Library is distributed in the hope that it will be      *
 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty   *
 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  *
 * Lesser General Public License for more details.                       *
 *                                                                       *
 * You should have received a copy of the GNU Lesser General Public      *
 * License along with this program.  If not, see                         *
 * <http://www.gnu.org/licenses/>.                                       *
 *************************************************************************/

// dmnsn_object* wrapper.

#ifndef DIMENSIONXX_OBJECT_HPP
#define DIMENSIONXX_OBJECT_HPP

namespace Dimension
{
  // Abstract base object class.  Wraps a dmnsn_object*.
  class Object
  {
  public:
    // No-op, made pure virtual
    virtual ~Object() = 0;

    virtual Array<double> intersections(const Line& l);
    virtual bool inside(const Vector& point);

    // Access the wrapped C object.
    dmnsn_object*       dmnsn();
    const dmnsn_object* dmnsn() const;

  protected:
    // No-op
    Object();
    // Wrap an existing object.
    explicit Object(dmnsn_object* object) : m_object(object) { }

    dmnsn_object* m_object;

  private:
    // Copying prohibited
    Object(const Object&);
    Object& operator=(const Object&);
  };

  // A custom object abstract base class, for creating your own object types
  class Custom_Object : public Object
  {
    public:
      Custom_Object();
      virtual ~Custom_Object();

      virtual Array<double> intersections(const Line& l) = 0;
      virtual bool inside(const Vector& point) = 0;
  };
}

#endif /* DIMENSIONXX_OBJECT_HPP */