Skip to content

Commit 7022a04

Browse files
committed
closes #706
1 parent 768990e commit 7022a04

File tree

1 file changed

+1
-5
lines changed
  • src/compas/datastructures/mesh/core

1 file changed

+1
-5
lines changed

src/compas/datastructures/mesh/core/mesh.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -727,10 +727,6 @@ def join(self, other):
727727
# polyedge topology
728728
# --------------------------------------------------------------------------
729729

730-
# face strips?
731-
# edge chains?
732-
# ...?
733-
734730
# --------------------------------------------------------------------------
735731
# face topology
736732
# --------------------------------------------------------------------------
@@ -790,7 +786,7 @@ def vertex_coordinates(self, key, axes='xyz'):
790786
list
791787
Coordinates of the vertex.
792788
"""
793-
return [self.vertex[key][axis] for axis in axes]
789+
return self.vertex_attributes(key, axes)
794790

795791
def vertex_area(self, key):
796792
"""Compute the tributary area of a vertex.

0 commit comments

Comments
 (0)