~ubuntu-branches/ubuntu/oneiric/kig/oneiric

« back to all changes in this revision

Viewing changes to objects/centerofcurvature_type.h

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2011-07-10 11:57:38 UTC
  • Revision ID: james.westby@ubuntu.com-20110710115738-gdjnn1kctr49lmy9
Tags: upstream-4.6.90+repack
ImportĀ upstreamĀ versionĀ 4.6.90+repack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (C) 2004  Maurizio Paolini <paolini@dmf.unicatt.it>
 
2
 
 
3
// This program is free software; you can redistribute it and/or
 
4
// modify it under the terms of the GNU General Public License
 
5
// as published by the Free Software Foundation; either version 2
 
6
// of the License, or (at your option) any later version.
 
7
 
 
8
// This program is distributed in the hope that it will be useful,
 
9
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
// GNU General Public License for more details.
 
12
 
 
13
// You should have received a copy of the GNU General Public License
 
14
// along with this program; if not, write to the Free Software
 
15
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
16
// 02110-1301, USA.
 
17
 
 
18
#ifndef KIG_OBJECTS_CENTEROFCURVATURE_TYPE_H
 
19
#define KIG_OBJECTS_CENTEROFCURVATURE_TYPE_H
 
20
 
 
21
#include "base_type.h"
 
22
 
 
23
/**
 
24
 * the center of curvature of a conic at a point
 
25
 */
 
26
class CocConicType
 
27
  : public ArgsParserObjectType
 
28
{
 
29
  typedef ArgsParserObjectType Parent;
 
30
  CocConicType();
 
31
  ~CocConicType();
 
32
public:
 
33
  static const CocConicType* instance();
 
34
  ObjectImp* calc( const Args& args, const KigDocument& ) const;
 
35
  const ObjectImpType* resultId() const;
 
36
};
 
37
 
 
38
/**
 
39
 * the center of curvature of a cubic at a point
 
40
 */
 
41
class CocCubicType
 
42
  : public ArgsParserObjectType
 
43
{
 
44
  typedef ArgsParserObjectType Parent;
 
45
  CocCubicType();
 
46
  ~CocCubicType();
 
47
public:
 
48
  static const CocCubicType* instance();
 
49
  ObjectImp* calc( const Args& args, const KigDocument& ) const;
 
50
  const ObjectImpType* resultId() const;
 
51
};
 
52
 
 
53
/**
 
54
 * the center of curvature of a curve at a point
 
55
 */
 
56
class CocCurveType
 
57
  : public ArgsParserObjectType
 
58
{
 
59
  typedef ArgsParserObjectType Parent;
 
60
  CocCurveType();
 
61
  ~CocCurveType();
 
62
public:
 
63
  static const CocCurveType* instance();
 
64
  ObjectImp* calc( const Args& args, const KigDocument& ) const;
 
65
  const ObjectImpType* resultId() const;
 
66
};
 
67
 
 
68
#endif