boundary_vertices — 3D mesh_process op

Data kinds: meshindices

Call: import fullseye as fs; fs.ledger.boundary_vertices(mesh) -> 'np.ndarray' (to call the implementation directly, import mesh_props; mesh_props.boundary_vertices(mesh) -> 'np.ndarray'; from the registry, ops3d.get("boundary_vertices"))

Usage

> This operator's description has not been translated yet. The original text follows as it is.

開いた縁(境界)に乗っている頂点の index → `(K,)`。

無向辺のうちちょうど 1 つの面にしか使われていない辺(境界辺)の端点を集めて

返す。閉じた多様体なら空配列 —— つまり `len(boundary_vertices(mesh)) == 0` が

水密性(watertight)の判定になる。穴埋め・体積計算・曲率のどれも、境界の

有無で意味が変わるので、先にここを見る。

Args:

mesh: `(vertices (N,3), faces (M,3))` のタプル。

Returns:

昇順・重複なしの `(K,) int64。境界が無ければ shape == (0,)`。

Raises:

ValueError: `mesh(vertices, faces)` の 2 要素でない、形状不正、

非有限座標、非整数・範囲外の index、空のとき。

限界(honest): 返るのは頂点の集合で、縁のループ(周回順)ではない

穴が複数あっても 1 つの配列にまとまるので、穴ごとに分けたいなら連結成分を

自分で辿ることになる(ループ抽出の op はまだ無い)。3 つ以上の面が共有する

非多様体辺はここには出ない(`mesh_edge_statsnon_manifold_edges`)。

Background guides (the physics and conventions behind this op)

blender_interop — Blender との併用 — 形を作って fullseye で測る(軸・単位・正解データの罠)

References (sample data, literature)

• Sample-data catalog (download URLs / licences) — 2-D uses skimage.data (BSD/public domain) plus synthetic images; 3-D lists download URLs for real data sources (Stanford, PDS, …).

• Operator provenance and references — the sources of the research/methods this op family came from.

Runnable examples (verified samples that actually call this op)

mesh_decimatepy -3.11 examples_3d/mesh_decimate.py

mesh_propspy -3.11 examples_3d/mesh_props.py

Ops the type connects to (they accept indices as input)

fuse_to_voxel

Same category (mesh_process)

laplacian_smooth · taubin_smooth · decimate_qem · face_normals · vertex_normals · mesh_area · vertex_curvature · face_areas


*Provenance: mesh_props.py — 3D operator registry. This per-op note is generated by tools/opdocs.py md (do not hand-edit).*

© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.