LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
Loading...
Searching...
No Matches
compose.h
1
9#ifndef __ae8e3269a3cd49398e40713cd251f128
10#define __ae8e3269a3cd49398e40713cd251f128
11#include "geometry_interface.h"
12
13namespace lf::geometry {
14
22std::unique_ptr<Geometry> Compose(std::unique_ptr<Geometry>&& a,
23 std::unique_ptr<Geometry>&& b);
24
25} // namespace lf::geometry
26
27#endif // __ae8e3269a3cd49398e40713cd251f128
Defines the Geometry interface and provides a number of classes that implement this interface + addit...
Definition compose.h:13
std::unique_ptr< Geometry > Compose(std::unique_ptr< Geometry > &&a, std::unique_ptr< Geometry > &&b)
Create a new geometry object that is the composition of .