如何用C写这个方程式?

时间:2018-12-14 14:00:19

标签: c

如何用C写this equation

float Xa, Ya, Za; //representing the X,Y,Z values of a point A
float Xb, Yb, Zb; //representing the X,Y,Z values of a point B
float Xc, Yc, Zc; //representing the X,Y,Z values of a point C

编辑:

在使用上面给出的这9个变量来计算d的函数时,我需要帮助。

d是从3D点C到3D向量AB的垂线的长度。

1 个答案:

答案 0 :(得分:1)

.NET Framework具有Point3D类。

表示三维(3D)数据点的坐标。使用3D图表执行自定义绘图时,将使用此类。

X     Gets or sets the X coordinate of a 3D point.
Y     Gets or sets the Y coordinate of a 3D point.
Z     Gets or sets the Z coordinate of a 3D point.

也具有Point3D结构。

Represents an x-, y-, and z-coordinate point in 3-D space.