still plenty of problems with angleaxis and other linear algebra stuff

This commit is contained in:
Hartmut Seichter 2019-01-25 18:01:01 +01:00
parent 9bdc13e3fc
commit 5245ceb112
13 changed files with 146 additions and 166 deletions

View file

@ -59,8 +59,8 @@ void register_core_function(sol::state& lua,sol::table& ns)
ns.new_usertype<axisangle>
("axisangle",
sol::constructors<axisangle(), axisangle(vector3,Scalar)>(),
"axis",sol::property(&axisangle::axis,&axisangle::set_axis),
"angle",sol::property(&axisangle::angle,&axisangle::set_angle)
"axis",&axisangle::axis,
"angle",&axisangle::angle
);