Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
openmesh-python
Commits
3d26ee3c
Commit
3d26ee3c
authored
Dec 03, 2020
by
Isaak Lim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
return dumb Handle for find_halfedge
parent
2288f4f9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/Mesh.hh
src/Mesh.hh
+3
-1
No files found.
src/Mesh.hh
View file @
3d26ee3c
...
...
@@ -886,7 +886,9 @@ void expose_mesh(py::module& m, const char *_name) {
.
def
(
"opposite_face_handle"
,
&
Mesh
::
opposite_face_handle
)
.
def
(
"adjust_outgoing_halfedge"
,
&
Mesh
::
adjust_outgoing_halfedge
)
.
def
(
"find_halfedge"
,
&
Mesh
::
find_halfedge
)
.
def
(
"find_halfedge"
,
[](
Mesh
&
_self
,
OM
::
VertexHandle
_vh0
,
OM
::
VertexHandle
_vh1
)
{
return
static_cast
<
OM
::
HalfedgeHandle
>
(
_self
.
find_halfedge
(
_vh0
,
_vh1
));
})
.
def
(
"valence"
,
valence_vh
)
.
def
(
"valence"
,
valence_fh
)
.
def
(
"is_simple_link"
,
&
Mesh
::
is_simple_link
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment