@@ -70,9 +70,10 @@ namespace geode
70
70
[[nodiscard]] const uuid& add_fault (
71
71
typename Fault3D::FAULT_TYPE type );
72
72
73
- void add_fault ( uuid fault_id );
73
+ void add_fault ( const uuid& fault_id );
74
74
75
- void add_fault ( uuid fault_id, typename Fault3D::FAULT_TYPE type );
75
+ void add_fault (
76
+ const uuid& fault_id, typename Fault3D::FAULT_TYPE type );
76
77
77
78
index_t add_surface_in_fault (
78
79
const Surface3D& surface, const Fault3D& fault );
@@ -84,10 +85,10 @@ namespace geode
84
85
[[nodiscard]] const uuid& add_horizon (
85
86
typename Horizon3D::HORIZON_TYPE type );
86
87
87
- void add_horizon ( uuid horizon_id );
88
+ void add_horizon ( const uuid& horizon_id );
88
89
89
90
void add_horizon (
90
- uuid horizon_id, typename Horizon3D::HORIZON_TYPE type );
91
+ const uuid& horizon_id, typename Horizon3D::HORIZON_TYPE type );
91
92
92
93
index_t add_surface_in_horizon (
93
94
const Surface3D& surface, const Horizon3D& horizon );
@@ -96,7 +97,7 @@ namespace geode
96
97
97
98
[[nodiscard]] const uuid& add_fault_block ();
98
99
99
- void add_fault_block ( uuid fault_block_id );
100
+ void add_fault_block ( const uuid& fault_block_id );
100
101
101
102
index_t add_block_in_fault_block (
102
103
const Block3D& block, const FaultBlock3D& fault_block );
@@ -105,7 +106,7 @@ namespace geode
105
106
106
107
[[nodiscard]] const uuid& add_stratigraphic_unit ();
107
108
108
- void add_stratigraphic_unit ( uuid stratigraphic_unit_id );
109
+ void add_stratigraphic_unit ( const uuid& stratigraphic_unit_id );
109
110
110
111
index_t add_block_in_stratigraphic_unit ( const Block3D& block,
111
112
const StratigraphicUnit3D& stratigraphic_unit );
0 commit comments