Developer documentation | Axl-2.5.1

axlAbstractVisitorParametric.cpp
Go to the documentation of this file.
1 /* axlAbstractVisitorParametricParametric.cpp ---
2  *
3  * Author: Anais Ducoffe
4  * Copyright (C) 2013 - Anais Ducoffe, Inria.
5  */
6 
7 /* Commentary:
8  *
9  */
10 
11 /* Change log:
12  *
13  */
14 
16 #include <dtkCoreSupport/dtkGlobal.h>
17 #include<axlCore/axlPoint.h>
18 //#include <axlGui/axlInspectorObjectFactory.h>
19 
20 class axlAbstractVisitorParametricPrivate
21 {
22 public:
23 };
24 
25 axlAbstractVisitorParametric::axlAbstractVisitorParametric(QObject *parent) : axlAbstractVisitor(parent), d(new axlAbstractVisitorParametricPrivate)
26 {
27  this->setParent(parent);
28 }
29 
31 {
32  delete d;
33 
34  d = NULL;
35 }
36 
37 
39 
42 //axlInspectorObjectInterface *axlAbstractVisitorParametric::form(void){
43 // DTK_DEFAULT_IMPLEMENTATION;
44 // return NULL;
45 //}
46 
48 
52  DTK_DEFAULT_IMPLEMENTATION;
53  Q_UNUSED(u);
54  return axlPoint();
55 
56 }
57 
59 
63  DTK_DEFAULT_IMPLEMENTATION;
64  Q_UNUSED(u);
65  Q_UNUSED(v);
66  return axlPoint();
67 }
68 
70 
73 axlPoint axlAbstractVisitorParametric::eval(double u, double v, double w){
74  DTK_DEFAULT_IMPLEMENTATION;
75  Q_UNUSED(u);
76  Q_UNUSED(v);
77  Q_UNUSED(w);
78  return axlPoint();
79 }
80 
81 // /////////////////////////////////////////////////////////////////
82 // axlAbstractVisitorParametric documentation
83 // /////////////////////////////////////////////////////////////////
84 
Class axlPoint defines 3D points.
Definition: axlPoint.h:34
virtual axlPoint eval(double u)
Return a dialog.
axlAbstractVisitorParametric(QObject *parent=NULL)
Return a dialog.