-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into mjcarroll/spdlog
- Loading branch information
Showing
31 changed files
with
6,935 additions
and
803 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,7 @@ | ||
ignore: | ||
- "graphics/src/tiny_obj_loader.h" | ||
- "graphics/src/CDT" | ||
- "graphics/src/VHACD" | ||
- "profiler/src/Remotery/lib" | ||
- "profiler/src/Remotery/vis" | ||
- "src/win_dirent.h" |
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,4 +1,5 @@ | ||
profiler/src/Remotery/* | ||
graphics/src/tiny_obj_loader.h | ||
graphics/src/CDT/* | ||
graphics/src/VHACD/* | ||
profiler/src/Remotery/* | ||
src/win_dirent.h | ||
graphics/src/tinyxml2/* |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright (C) 2024 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef GZ_COMMON_DELAUNAYTRIANGULATION_HH_ | ||
#define GZ_COMMON_DELAUNAYTRIANGULATION_HH_ | ||
|
||
#include <vector> | ||
|
||
#include <gz/math/Vector2.hh> | ||
|
||
#include <gz/common/graphics/Export.hh> | ||
|
||
|
||
namespace gz::common | ||
{ | ||
class SubMesh; | ||
|
||
/// \brief Perform delaunay triangulation on input vertices. | ||
/// \param[in] _vertices A list of all vertices | ||
/// \param[in] _edges A list of edges. Each edge is made of 2 vertex | ||
/// indices from _vertices | ||
/// \param[out] _submesh A submesh that will be populated with the | ||
/// resulting triangles. | ||
/// \return True on success. | ||
bool GZ_COMMON_GRAPHICS_VISIBLE DelaunayTriangulation( | ||
const std::vector<gz::math::Vector2d> &_vertices, | ||
const std::vector<gz::math::Vector2i> &_edges, | ||
gz::common::SubMesh *_submesh); | ||
|
||
} // namespace gz::common | ||
#endif // GZ_COMMON_DELAUNAYTRIANGULATION_HH_ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.