Rumba C++ SDK
Lattice.h
Go to the documentation of this file.
1 /*
2 
3  *
4  ***
5  *****
6  ********************* Mercenaries Engineering SARL
7  ***************** Copyright (C) 2018
8  *************
9  ********* http://www.mercenaries-engineering.com
10  ***********
11  **** ****
12  ** **
13 
14 */
15 #pragma once
16 
17 #include "Points.h"
18 #include "SpanSpan.h"
19 
20  namespace maquina
21  {
23 
25  class MAQUINA_EXPORT Lattice : public Points
26  {
27  public:
29  Lattice();
30 
32 
33  Lattice(const Value &v);
34 
36  static const Lattice default_value;
37 
39  const Imath::V3i &resolution() const;
40 
42  Lattice(std::shared_ptr<Impl> impl) { _impl=impl; }
43  };
44  }
Definition: ImathFrame.h:42
This version of the SDK is unstable, i-e, it may change with no warning.
Definition: AddCurveAction.h:20
#define MAQUINA_EXPORT
Definition: Export.h:31
static const Lattice default_value
The default value.
Definition: Lattice.h:36
A lattice cage.
Definition: Lattice.h:25
A set of 3d points.
Definition: Points.h:26
Base class of all Rumba values.
Definition: Value.h:34