I know this is old, but I came here from Google, so I think others can too.
The only problem is the printing method you are using. One simplex is an nD-triangular nick, defined by 3 points. But the plotting function should return to the last point, otherwise only 2 out of 3 simplex edges are drawn.
import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from scipy.spatial import ConvexHull # 8 points defining the cube corners pts = np.array([[0, 0, 0], [1, 0, 0], [1, 1, 0], [0, 1, 0], [0, 0, 1], [1, 0, 1], [1, 1, 1], [0, 1, 1], ]) hull = ConvexHull(pts) fig = plt.figure() ax = fig.add_subplot(111, projection="3d") # Plot defining corner points ax.plot(pts.T[0], pts.T[1], pts.T[2], "ko") # 12 = 2 * 6 faces are the simplices (2 simplices per square face) for s in hull.simplices: s = np.append(s, s[0]) # Here we cycle back to the first coordinate ax.plot(pts[s, 0], pts[s, 1], pts[s, 2], "r-") # Make axis label for i in ["x", "y", "z"]: eval("ax.set_{:s}label('{:s}')".format(i, i)) plt.show()
