Added bind for is_equal_approx in MLPPMatrix.

This commit is contained in:
Relintai 2023-02-08 01:43:48 +01:00
parent 119f4ee102
commit ee727b327d

View File

@ -60,4 +60,6 @@ void MLPPMatrix::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_from_mlpp_vectors_array", "from"), &MLPPMatrix::set_from_mlpp_vectors_array);
ClassDB::bind_method(D_METHOD("set_from_arrays", "from"), &MLPPMatrix::set_from_arrays);
ClassDB::bind_method(D_METHOD("set_from_mlpp_matrix", "from"), &MLPPMatrix::set_from_mlpp_matrix);
ClassDB::bind_method(D_METHOD("is_equal_approx", "with", "tolerance"), &MLPPMatrix::is_equal_approx, CMP_EPSILON);
}