X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fmatrix4.h;fp=src%2Fmatrix4.h;h=26530511d5fb9372d6de5bb127fe183ce24440f9;hb=5e5b0caed972e0b225199551aff09c399edb8d3c;hp=0000000000000000000000000000000000000000;hpb=d8ff74866c89933d74577d7887e47f013d515c69;p=guile-irrlicht.git diff --git a/src/matrix4.h b/src/matrix4.h new file mode 100644 index 0000000..2653051 --- /dev/null +++ b/src/matrix4.h @@ -0,0 +1,38 @@ +/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine + + Copyright (C) 2020 Javier Sancho + + This file is part of guile-irrlicht. + + guile-irrlicht is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 3 of the + License, or (at your option) any later version. + + guile-irrlicht is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with guile-irrlicht. If not, see + . +*/ + +#ifndef __GUILE_IRRLICHT_MATRIX4_H_INCLUDED__ +#define __GUILE_IRRLICHT_MATRIX4_H_INCLUDED__ + +#include +#include + +extern "C" { + + SCM + scm_from_matrix4 (irr::core::matrix4 cmatrix); + + irr::core::matrix4 + scm_to_matrix4 (SCM matrix); + +} + +#endif