Pomax

Results 770 comments of Pomax

Sounds like you're on a dead version of Node: which version are you using? `performance` has been in Node since v16, which is already old enough to have reached EOL.

Regarding point 1, I don't see why not: MIDI is MIDI so you just need to record "everything" rather than just the note on/off and marker information that this code...

Yeah, so: 1: As long as you write the correct byte listener, you can record any midi messages/data you want. 2: That's sounds like something you absolutely don't want to...

Correct: this is specifically about _not_ using a file browser to start Processing by double-clicking/activating a .pde file: First open Processing on its own, then use the "file -> open"...

Cheers. Do you have an example curve/code snippet we can add to the tests for this?

It probably also depends on what you intend to do: are you trying to find individual points on the surface, are you trying to approximate the surface as a mesh...

But what is "the value"? A surface has infinitely many values, so what are you actually trying to find?

Are you implementing your own graphics (sub)system? Because most programming languages already come with shape fill solutions =)

The web stack has SVG: creating a `` generally does the job for you. And Canvas2D will happily draw an SVG image wherever you need it using the `.image` function,...

I think we're running into term confusion here: you're not talking about surfaces in relation to Bezier curves, which are a property of 3D curve sets. You're talking about actual...