How can i plot a single 3D point with python?
Ihave tried to plot the point mentioned as the below plot in the code but i am unable to plot.
from mpl_toolkits.mplot3d import Axes3D ###Import axes from 3D
import matplotlib.pyplot as plt ##To plot graphs/pictures
ox, oy, oz = center
corner_1=(ox-w/2,oy-l/2,oz-h/2)
center = [0.2,0.3,0.4]
l=0.3,
w=0.4
h=0.1
plt.plot(corner_1,'ro')
plt.scatter(corner_1)
The point should be plotted at the respected position as it was initialized