Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 735 Bytes

torus_latex_toMarkdown.md

File metadata and controls

33 lines (25 loc) · 735 Bytes
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[]
\addplot3[
    surf,
    samples=50,
    domain=0:2*pi,
    y domain=0:2*pi,
    z buffer=sort,
    colormap/cool,
] (
    {(2+cos(deg(x)))*cos(deg(y))}, % x(t,s)
    {(2+cos(deg(x)))*sin(deg(y))}, % y(t,s)
    {sin(deg(x))}                  % z(t,s)
);
\end{axis}
\end{tikzpicture}
\end{document}


'''Remember to replace `url_of_the_image_here` with the URL of the torus image
you generated and uploaded to GitHub or another image hosting service.
This way, you'll have a well-formatted README.md file that includes both the LaTeX code and the visualization of the torus.