codac 1.5.6
Loading...
Searching...
No Matches
codac2_CtcPointCloud.h
Go to the documentation of this file.
1
9
10#pragma once
11
12#include "codac2_Ctc.h"
14
15namespace codac2
16{
17 class CtcPointCloud : public Ctc<CtcPointCloud,IntervalVector>
18 {
19 public:
20
21 CtcPointCloud(const std::vector<IntervalVector>& p);
22 void contract(IntervalVector& x) const;
23
24 protected:
25
26 const std::vector<IntervalVector> _p;
27 };
28}