Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed unused ImGui helpers #1007

Merged
merged 6 commits into from
Aug 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/yocto/yocto_image.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
#include <algorithm>
#include <functional>
#include <string>
#include <vector>
#include <utility>
#include <vector>

#include "yocto_math.h"

Expand Down
3 changes: 2 additions & 1 deletion libs/yocto/yocto_shape.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ vector<vec2i> get_edges(const edge_map& emap);
vector<vec2i> get_boundary(const edge_map& emap);
vector<vec2i> get_edges(const vector<vec3i>& triangles);
vector<vec2i> get_edges(const vector<vec4i>& quads);
vector<vec2i> get_edges(const vector<vec3i>& triangles, const vector<vec4i>& quads);
vector<vec2i> get_edges(
const vector<vec3i>& triangles, const vector<vec4i>& quads);

// Build adjacencies between faces (sorted counter-clockwise)
vector<vec3i> face_adjacencies(const vector<vec3i>& triangles);
Expand Down
Loading