我有一个平面的法线和一个点在它上面。我试图将这两种情况都用掉,但我不认为这是正确的,我无法弄清楚为什么。这是我的代码。
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
point = np.array([1309.66102863, -531.22959263, 341.89779288])
normal = np.array([ 80.60165306, -32.69394323, 21.04172506])
# a plane is a*x+b*y+c*z+d=0
# [a,b,c] is the normal. Thus, we have to calculate
# d and we're set
d = -point.dot(normal)
# create x,y
xx, yy = np.meshgrid(range(1200,1400), range(-600,-400))
# calculate corresponding z
z = (-normal[0] * xx - normal[1] * yy - d) * 1. /normal[2]
# plot the surface
plt3d = plt.figure().gca(projection='3d')
plt3d.plot_surface(xx, yy, z, alpha=0.2)
plt3d.plot([point[0], point[0]+normal[0]],
[point[1], point[1]+normal[1]],
[point[2], point[2]+normal[2]])
plt.show()
我从this帖子修改了它。我得到的结果看起来像这样 -
显然法线不垂直于平面。
然而,有时它会起作用,例如当我设置
时point = np.array([1, 2, 3])
normal = np.array([1, 1, 2])
我得到的情节是
显然,这要好得多。在第一种情况下它怎么不起作用?