nowakf

Results 13 issues of nowakf

You sometimes represent a mesh with an array of vertices, and an array of triangle indices. I would construct such an array with something like: ``` let verts = triangulation.vertices().map(|pt|...

It currently returns self.contains_any_constraint_edge(lineIntersectionIterator), which is true when the line intersects a constraint edge. In which case, one *cannot* add a constraint edge.

A lot of the time, when you call intersects_constraint, you're interested in which constraint you're intersecting, e.g. so you can get rid of it, or alter it, etc. Do you...

### System information - **SolveSpace version:** 3.0~0e0b0252 - **Operating system:** Arch Linux ### Expected behavior 1. You create the triangular section. 2. You lathe it around its tip. 3. You...

bug
duplicate
NURBS

I wanted to play around with 3D buffers, but the BUFFER_1, BUFFER_0 etc approach doesn't seem to work when you define something like: uniform sampler3D u_buffer1; Is this a misunderstanding...

enhancement

Creating a userdata method with a LightUserData as an argument, then passing a void pointer to that method, causes the following error: `thread '' panicked at 'mlua internal error: LUA_TNONE...

How do you feel about a table macro? Something like: ````rust macro_rules! insert_sequence { (@replace_expr $_t:tt $sub:expr) => {$sub}; (@count $($tts:tt),*) => {0 $(+ insert_sequence!(@replace_expr $tts 1))*}; ($table:ident => $head:tt...

Is Harlowe supported? If so, what portions? It's unclear whether Harlowe is the preferred format, an untested format, or a feature that's not implemented yet.

enhancement

It says in the front page that you can: "Read pixel array from any node" - but how do you actually do this? Can't find anything anywhere - is it...

I made a line renderer that transforms a sequence of Vec3s to a long tubular CpuMesh. Right now, that means I have to do something like: ```` let mesh =...