Update linalg.h

This commit is contained in:
blueloveTH 2023-05-12 14:15:13 +08:00
parent 8d9761c6b5
commit a7110a3f63

View File

@ -581,13 +581,13 @@ struct PyMat3x3: Mat3x3{
vm->bind_method<1>(type, "__eq__", [](VM* vm, ArgsView args){
PyMat3x3& self = _CAST(PyMat3x3&, args[0]);
PyMat3x3& other = _CAST(PyMat3x3&, args[1]);
PyMat3x3& other = CAST(PyMat3x3&, args[1]);
return VAR(self == other);
});
vm->bind_method<1>(type, "__ne__", [](VM* vm, ArgsView args){
PyMat3x3& self = _CAST(PyMat3x3&, args[0]);
PyMat3x3& other = _CAST(PyMat3x3&, args[1]);
PyMat3x3& other = CAST(PyMat3x3&, args[1]);
return VAR(self != other);
});