Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (1)
Simple image based on Matlab mesh
no vote
Simple image mesh generation software, use the Matlab language to automatically to mesh the two-dimension, three-dimension image, the image depicted by entering outline codes. % Example: (Uniform Mesh on Unit Circle) fd=@(p) sqrt(sum(p.^2,2))-1; [p,t]=distmesh2d(fd,@huniform,0.2,[-1,-1;1,1],[]);% Example: (Uniform Mesh on Torus) fd=@(p) (sum(p.^2,2)+.8^2-.2^2).^2-4*.8^2*(p(:,1).^2+p(:,2).^2); [p,t]=distmeshsurface(fd,@huniform,0.1,[-1.1,-1.1,-.25;1.1,1.1,.25]);
tcbbcc
2016-08-23
2
1
No more~