polyhedron op• 資料種類:無 → mesh(僅由參數決定的運算子 —— 不接受影像或資料輸入)
• 呼叫: import fullseye as fs; fs.ledger.geodesic_dome(frequency=3, radius=1.0, hemisphere=False)(要直接呼叫實作,import render3d; render3d.geodesic_dome(frequency=3, radius=1.0, hemisphere=False);從台帳取用則 ops3d.get("geodesic_dome"))
對正二十面體細分得到的測地球 —— 決定形狀的是尤拉公式。
> 以下的詳細說明為原文 —— 摘要與標題已翻譯。
Each icosahedron face is cut into `frequency**2` triangles and every vertex
is pushed out to the sphere. The counts are then forced, not chosen:
`F = 20*f**2, E = 30*f**2, V = 10*f**2 + 2`, and Euler's formula
`V - E + F == 2` holds exactly.
★Why this earns its place: Euler also forces the *irregularity*. If every
vertex had degree 6 then `2E = 6V, which contradicts V - E + F = 2`;
counting degrees gives `sum(6 - deg(v)) == 12` over all vertices, so a
triangulated sphere built from hexagons must contain exactly twelve
pentagons — no more, no fewer, at any frequency. That is why a football has
twelve black patches, and it is an integer this operator must reproduce
exactly. Nothing about the drawing can be "close enough".
Returns a `mesh (V, F): V is (n, 3) float, F is (m, 3)`
int. With `hemisphere=True the vertices below z = 0` and the faces
touching them are dropped (then Euler no longer gives 2, and the
twelve-pentagon count applies to the full sphere only — said here rather
than letting the gate quietly change meaning).
Raises `ValueError: frequency < 1; radius <= 0`; the mesh would
exceed the cap.
HALCON: no operator (`gen_sphere_object_model_3d` makes a UV sphere, whose
poles are degenerate — a different object).
• 範例資料目錄(下載 URL / 授權) —— 2-D 用 skimage.data(BSD/公有領域)加合成圖,3-D 給出真實資料源(Stanford/PDS 等)的下載 URL。
• 運算子來歷與參考文獻 —— 該運算子族所依據的研究/方法出處。
• geodesic_dome — py -3.11 examples_3d/geodesic_dome.py
mesh 作為輸入)mesh_to_voxel · mesh_to_points · to_points · fuse_to_voxel · ambient_occlusion · cast_shadow · supersample_mesh · render_beauty
polyhedron)—
*Provenance: render3d.py — 3D 運算子登記表。本條目由 tools/opdocs.py md 自動產生(請勿手動編輯)。*
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.