Makogan

Results 39 issues of Makogan

As the title, do you plan on supporting sparse matrices in this library?

Currently the values in a matrix buffer are printed like this: ![image](https://user-images.githubusercontent.com/17284362/99206066-72345580-2788-11eb-8ac5-4431a0940fc8.png) Each vector in that list is actually a column, but because they are printed horizontally the user can...

I think there is a numeric bug in the way nalgebra computes its perspective calculation. I was trying to render an object through both raytracing and perspective projection and i...

Consider this snippet: ```rust let axis_angle : Vec3 = axis.normalize() * angle; camera.rotation *= na::UnitQuaternion::::new(axis_angle); ``` Assume that axis and angle are computed from the cross and dot products of...

The [docs](https://pyx-project.org/examples/drawing/pathitem.html) very skilfully show how to add a path that is known at "compile time", but since the input to `path.path` it's not immediately obvious how to create a...

I am getting this error when trying to connect a seggers jtag device to a raspberry pi 3 board, what could be the issue?

This project is really cool, I have been trying to get PGA working in a project of mine but there is a lot of minutia with numerical stability and I...

I think the matrix types would benefit from implementing the core trait ExactSizeIterator, it would provide a generic way of determining the dimensions that would also be compatible with vectors...

enhancement
good first issue

Hey, could you please make the svd trait public so that one can use the lapack crate to make an actual SVD decomposition? Given that currently the methods called SVD...

I am trying to address this issue https://github.com/dimforge/nalgebra/issues/1125 I have run into needing a rref about 3 times by now so I figured implementing it in nalgebra would help everyone...