Marcel Steinbeck

Results 24 issues of Marcel Steinbeck

TS_MALLOC => https://en.cppreference.com/w/cpp/memory/new/bad_alloc TS_INDEX_ERROR => https://en.cppreference.com/w/cpp/error/out_of_range TS_U_UNDEFINED => https://en.cppreference.com/w/cpp/error/domain_error TS_IO_ERROR => custom (e.g. io_error) Remaining => https://en.cppreference.com/w/cpp/error/invalid_argument Errors can be mapped to C++ exceptions using a single macro. Swig provides...

[tesi-chieppa.pdf](https://www.dm.uniba.it/home/dottorato/tesi-di-dottorato/tesi-chieppa.pdf) page 39 (section 2.6): Standard knot removal. Maybe this equations are applicable.

Currently, memory is allocated for each segment of a spline. This approach becomes very slow for splines with thousands of control points and knots.

### Expected behavior and actual behavior: Something similar to: ```java on("qualified.name.of.class") .hasField("field") ``` ```java on("qualified.name.of.class") .hasFieldOfType("field", Integer.class) ``` ```java on("qualified.name.of.class") .hasMethod"foo") ``` ```java on("qualified.name.of.class") .hasMethodWithParameters"foo", String.class) ``` ```java on("qualified.name.of.class") .hasMethodOfType"foo",...

P: Medium
T: Enhancement

I try to include parson into a project which compiles the source files with `-Wfloat-equal`. Unfortunately, parson compares double values: https://github.com/kgabis/parson/blob/master/parson.c#L1367. As far as I can see this is the...

If a spline has only one control point, `tension` creates a spline whose control point is `nan`.

Fisheye zooming allows the user to zoom in on a particular piece of the software, while simultaneously shrinking the rest of the graph to preserve contextual information. [Example](https://fujiaddict.com/wp-content/uploads/2019/01/Meike-6-11mmSample1.jpg)

enhancement
question
bachelorproject

This is a feature I'm missing in nearly every chat client (at least for mathematical stuff). Maybe this is an interesting link: http://qt-project.org/wiki/Qt_and_LaTeX_via_KLFBackend

type:feature
priority:low

Hi @andsmedeiros, thank you for creating and sharing this library. I would like to use it in my project (https://github.com/msteinbeck/tinyspline). I'm planning to replace explicit calls to `malloc` and `free`...