icoSphereMesh(n)

Compute the triangle mesh for a sphere, using an icosphere mesh.
298 téléchargements
Mise à jour 12 déc. 2015

Afficher la licence

% mesh = icoSphereMesh(n)
%
% This code returns a triangle mesh for the unit icosphere in 3 dimensions
%
% INPUTS:
% n = recursion level: (default = 1)
% n == 0 returns 12 verticies
% n == 1 returns 42 verticies
% n == 2 returns 162 verticies
% n == 3 returns 642 verticies
% n == 4 returns 2562 verticies
% n == 5 returns 10242 verticies
% n > 5 set n == 5 to avoid huge mesh.
%
% OUTPUTS:
% mesh = struct with fields:
% mesh.face = [M x 3] array of indicies for each triangle
% mesh.x = the x-coordinate of each vertex
% mesh.y = the y-coordinate of each vertex
% mesh.z = the z-coordinate of each vertex
%
% NOTES:
% 1) Plot using: trimesh(mesh.face, mesh.x, mesh.y, mesh.z);
%
% 2) My code is based on code from two online sources:
% http://blog.andreaskahler.com/2009/06/creating-icosphere-mesh-in-code.html
% http://eeg.sourceforge.net/doc_m2html/bioelectromagnetism/mesh_refine_tri4.html
%

Citation pour cette source

Matthew Kelly (2024). icoSphereMesh(n) (https://www.mathworks.com/matlabcentral/fileexchange/54434-icospheremesh-n), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2012a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Triangulation Representation dans Help Center et MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Publié le Notes de version
1.1.0.0

Added photo. Made file name more clear. Improved description.

1.0.0.0