음모를 꾸미는 방법이 있나요?에네페르의 최소 표면TikZ에서 암시적 방정식을 사용하거나 매개변수화된 형식을 사용합니까?
참조:https://mathworld.wolfram.com/EnnepersMinimalSurface.html
답변1
pgfplots를 사용할 수 있습니다.
\documentclass[tikz,border=3mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.17}
\begin{document}
\begin{tikzpicture}
\begin{axis}[hide axis]
\addplot3[surf,z buffer=sort,%
%mesh/ordering=y varies,
domain=0:1,domain y=-180:180]
({x*cos(y)-x*x*x*cos(3*y)/3},
{-x*(3*sin(y)+x*x*sin(3*y))/3},
{x*x*cos(2*y)});
\end{axis}
\end{tikzpicture}
\end{document}
답변2
이것은 Asymptote
파라메트릭 표현의 버전입니다.
// https://tex.stackexchange.com/questions/570157/tikz-plot-for-ennepers-minimal-surface
// Enneper's Minimal Surface
// ref:https://mathworld.wolfram.com/EnnepersMinimalSurface.html
//
// EnnepersMinimalSurface.asy
//
// to get EnnepersMinimalSurface.png, run
// asy -f png -render=4 EnnepersMinimalSurface.asy
//
import graph3;
size(200,0);
currentlight.background=paleyellow+opacity(0.0);
currentprojection=
orthographic(camera=(-25,50,60));
triple f(pair t){
real r=t.x, phi=t.y;
real x=r*cos(phi)-1/3*r^3*cos(3*phi);
real y=-1/3*r*(3*sin(phi)+r^2*sin(3*phi));
real z=r^2*cos(2*phi);
return (x,y,z);
}
surface s=surface(f,(0,-pi),(1,pi),nu=12,nv=200,usplinetype=Spline);
draw(s,paleblue+opacity(0.4),meshpen=nullpen,render(merge=true));