-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core: clang-format most of the things.
- Loading branch information
Showing
329 changed files
with
14,324 additions
and
13,116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
#include "config.hpp" | ||
#include "Geometry.hpp" | ||
|
||
#include "config.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
#include "EspressoSystemInterface.hpp" | ||
|
||
class Geometry { | ||
public: | ||
void set_box_l(Vector3d x) {m_box_l =x;} | ||
void set_my_left(Vector3d x) {m_my_left=x;} | ||
void set_my_right(Vector3d x) { m_my_right=x;} | ||
Vector3d get_box_l() {return m_box_l;} | ||
Vector3d get_my_left() { return m_my_left; } | ||
Vector3d get_my_right() { return m_my_right; } | ||
private: | ||
Vector3d m_box_l; | ||
Vector3d m_my_left; | ||
Vector3d m_my_right; | ||
}; | ||
public: | ||
void set_box_l(Vector3d x) { m_box_l = x; } | ||
void set_my_left(Vector3d x) { m_my_left = x; } | ||
void set_my_right(Vector3d x) { m_my_right = x; } | ||
Vector3d get_box_l() { return m_box_l; } | ||
Vector3d get_my_left() { return m_my_left; } | ||
Vector3d get_my_right() { return m_my_right; } | ||
|
||
private: | ||
Vector3d m_box_l; | ||
Vector3d m_my_left; | ||
Vector3d m_my_right; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.