Simplest way to plot 3d surface given 3d points

Solution with matplotlib: #!/usr/bin/python3 import sys import matplotlib import matplotlib.pyplot as plt from matplotlib.ticker import MaxNLocator from matplotlib import cm from mpl_toolkits.mplot3d import Axes3D import numpy from numpy.random import randn from scipy import array, newaxis # ====== ## data: DATA = array([ [-0.807237702464, 0.904373229492, 111.428744443], [-0.802470821517, 0.832159465335, 98.572957317], [-0.801052795982, 0.744231916692, 86.485869328], [-0.802505546206, 0.642324228721, 75.279804677], [-0.804158144115, … Read more