16 lines
196 B
C++
16 lines
196 B
C++
//
|
|
// Created by nb on 31.12.23.
|
|
//
|
|
|
|
#ifndef GEOMETRY_MAIN_HPP
|
|
#define GEOMETRY_MAIN_HPP
|
|
|
|
#include <iostream>
|
|
#include <Eigen/Dense>
|
|
|
|
using namespace std;
|
|
|
|
int main();
|
|
|
|
#endif //GEOMETRY_MAIN_HPP
|