@@ -59,9 +59,9 @@ void check_colocation2D()
5959 builder->set_point ( 3 , geode::Point2D{ { 2 ., 0 . } } );
6060 builder->set_point ( 4 , geode::Point2D{ { 1 ., 4 . } } );
6161 builder->set_point (
62- 5 , geode::Point2D{ { 2 ., geode::global_epsilon / 2 } } );
62+ 5 , geode::Point2D{ { 2 ., geode::GLOBAL_EPSILON / 2 } } );
6363 builder->set_point (
64- 6 , geode::Point2D{ { geode::global_epsilon / 1.1 , 2 . } } );
64+ 6 , geode::Point2D{ { geode::GLOBAL_EPSILON / 1.1 , 2 . } } );
6565
6666 const geode::EdgedCurveColocation2D colocation_inspector{ *curve };
6767 OPENGEODE_EXCEPTION ( colocation_inspector.mesh_has_colocated_points (),
@@ -117,10 +117,10 @@ void check_colocation3D()
117117 builder->set_point ( 2 , geode::Point3D{ { 0 ., 0 ., 0 . } } );
118118 builder->set_point ( 3 , geode::Point3D{ { 2 ., 0 ., 0 . } } );
119119 builder->set_point ( 4 , geode::Point3D{ { 1 ., 4 ., 3 . } } );
120- builder->set_point ( 5 , geode::Point3D{ { 2 ., geode::global_epsilon / 2 ,
121- geode::global_epsilon / 2 } } );
120+ builder->set_point ( 5 , geode::Point3D{ { 2 ., geode::GLOBAL_EPSILON / 2 ,
121+ geode::GLOBAL_EPSILON / 2 } } );
122122 builder->set_point (
123- 6 , geode::Point3D{ { geode::global_epsilon / 1.1 , 2 ., 1 . } } );
123+ 6 , geode::Point3D{ { geode::GLOBAL_EPSILON / 1.1 , 2 ., 1 . } } );
124124
125125 const geode::EdgedCurveColocation3D colocation_inspector{ *curve };
126126 OPENGEODE_EXCEPTION ( colocation_inspector.mesh_has_colocated_points (),
0 commit comments