7

这是故障码。。

multresult := mult(mult(temp, quatview), conjugate(temp));

完整程序

procedure TForm2.RotateCamera(var angle: Single; x: Single; y: Single; z: Single);
var
    temp, QuatView, multResult : TQuaternion;
begin
    temp.x := x * sin(Angle/2);
    temp.y := y * sin(Angle/2);
    temp.z := z * sin(Angle/2);
    temp.w := cos(Angle/2);

    quatview.x := camera1.Position.x;
    quatview.y := camera1.Position.y;
    quatview.z := camera1.Position.z;
    quatview.w := 0;

    multresult := mult(mult(temp, quatview), conjugate(temp));

    camera1.Position.x := multresult.x;
    camera1.Position.y := multresult.y;
    camera1.Position.z := multresult.z;
end;

多功能

function TForm2.mult(var A: TQuaternion; B: TQuaternion) :TQuaternion;
 var
   c : TQuaternion;
begin
  C.x := A.w*B.x + A.x*B.w + A.y*B.z - A.z*B.y;
  C.y := A.w*B.y - A.x*B.z + A.y*B.w + A.z*B.x;
  C.z := A.w*B.z + A.x*B.y - A.y*B.x + A.z*B.w;
  C.w := A.w*B.w - A.x*B.x - A.y*B.y - A.z*B.z;
result := C;
End;

和共轭

 function TForm2.conjugate( var quat:TQuaternion) :TQuaternion;
  begin
     quat.x := -quat.x;
     quat.y := -quat.y;
     quat.z := -quat.z;
     result := quat;
  end;

如果需要 TQuaternion

type
  TQuaternion = class
    x: single;
    y: single;
    z: single;
    w: single;
  end;

知道为什么我会收到此错误以及如何解决它吗?

4

2 回答 2

13

您提出的问题的答案是 mult 的参数应该是 const。你不修改它们(你不应该),所以让它们成为常量。然后你的代码编译。

同样,Conjugate 修改其输入参数也是一种不好的形式。这使得该功能难以使用。不要那样做。

考虑这一行:

multresult := mult(mult(temp, quatview), conjugate(temp) );

由于 conjugate 会修改 temp,因此您最好希望在使用 temp 之后再调用 conjugate。语言没有这样的保证。所以,交叉你的手指!

算术代码值得遵循的原则之一是永远不应修改输入参数/操作数,并且函数总是返回值。遵循这个原则,你永远不会落入上面强调的陷阱。请参阅我的答案的第二部分以获取说明。

但是,即使进行了这些更改,代码也无法工作,因为您没有实例化 TQuaternion 类的任何实例。你确定这不是唱片?


当你创建一个好的四元数类型时,真正的进步将会到来。这应该是一种值类型,因为出于多种原因,算术运算更适合值类型。

在现代 Delphi 中,您希望将记录与运算符一起使用。这是您需要的内容,可以根据需要进行扩展。

type
  TQuaternion = record
    x: single;
    y: single;
    z: single;
    w: single;
    function Conjugate: TQuaternion;
    class operator Multiply(const A, B: TQuaternion): TQuaternion;
  end;

function TQuaternion.Conjugate: TQuaternion;
begin
  Result.x := -x;
  Result.y := -y;
  Result.z := -z;
  Result.w := w;
end;

class operator TQuaternion.Multiply(const A, B: TQuaternion): TQuaternion;
begin
  Result.x := A.w*B.x + A.x*B.w + A.y*B.z - A.z*B.y;
  Result.y := A.w*B.y - A.x*B.z + A.y*B.w + A.z*B.x;
  Result.z := A.w*B.z + A.x*B.y - A.y*B.x + A.z*B.w;
  Result.w := A.w*B.w - A.x*B.x - A.y*B.y - A.z*B.z;
end;

使用这种类型,您的乘法调用变为:

 multresult := temp*quatview*temp.Conjugate;

您肯定会想为这种类型编写更多的运算符和辅助函数。

将算术函数移入这种类型并移出您的形式非常重要。不要使用您的高级 GUI 表单类来实现低级算术。

最后一条建议。您的代码反复滥用 var 参数。我建议您将 var 参数视为要避免的事情。如果可能,尝试编写没有它们的代码。

于 2013-08-18T06:44:50.070 回答
5

mult方法将A参数声明为 a var,因此您必须将变量传递给该方法才能工作,就像这样。

 multresult := mult(temp, quatview);
 multresult := mult(multresult, conjugate(temp));
于 2013-08-18T03:59:06.863 回答