3D Wireframe
Seashell Spiral Wireframe
Seashell spiral surface wireframe with amber neon styling.
Output
Python
import matplotlib.pyplot as plt
import numpy as np
# Seashell spiral
u = np.linspace(0, 6 * np.pi, 100)
v = np.linspace(0, 2 * np.pi, 30)
U, V = np.meshgrid(u, v)
a, b, c = 0.2, 0.1, 0.1
X = a * (1 - U / (6 * np.pi)) * np.cos(2 * U) * (1 + np.cos(V)) + c * np.cos(2 * U)
Y = a * (1 - U / (6 * np.pi)) * np.sin(2 * U) * (1 + np.cos(V)) + c * np.sin(2 * U)
Z = b * U / (6 * np.pi) + a * (1 - U / (6 * np.pi)) * np.sin(V)
fig = plt.figure(figsize=(10, 8), facecolor='#020B14')
ax = fig.add_subplot(111, projection='3d', facecolor='#020B14')
ax.plot_wireframe(X, Y, Z, rstride=3, cstride=1, color='#F5B027', linewidth=0.5, alpha=0.9)
ax.set_xlabel('X', fontsize=11, color='#94a3b8', labelpad=10)
ax.set_ylabel('Y', fontsize=11, color='#94a3b8', labelpad=10)
ax.set_zlabel('Z', fontsize=11, color='#94a3b8', labelpad=10)
ax.set_title('Seashell Spiral Wireframe', fontsize=14, color='white', fontweight='bold', pad=20)
ax.tick_params(colors='#64748b', labelsize=8)
ax.xaxis.pane.fill = False
ax.yaxis.pane.fill = False
ax.zaxis.pane.fill = False
ax.xaxis.pane.set_edgecolor('#1e293b')
ax.yaxis.pane.set_edgecolor('#1e293b')
ax.zaxis.pane.set_edgecolor('#1e293b')
plt.tight_layout()
plt.show()
Library
Matplotlib
Category
3D Charts
More 3D Wireframe examples
☕