Very cool. Game developers get all the fun problems :) If anyone gets interested in the SVG format, I've also found this to be a very useful resource: https://svgpocketguide.com/book/
Personally I found the SVG specification very readable and understandable as well. It also has the benefit of accurately describing what the renderer should do (a lot of resources out there are outdated or inaccurate).
Creating a Pencil Effect in SVG
11–20 of 26 posts
Re: Creating a Pencil Effect in SVG
#12I wish there was an SVG2 that was more like modern 3D graphics APIs. My druthers: vertex stores, index buffers, stroke & shapes paths, and then both "standard" (prebaked) and "user-defined" (shader) shaders for texturing the strokes & shapes.
https://developers.google.com/web/updates/2013/03/Introducti...
Re: Creating a Pencil Effect in SVG
#13* https://heredragonsabound.blogspot.com/2016/11/this-is-where...
* https://heredragonsabound.blogspot.com/2018/12/hand-drawn-li...
Re: Creating a Pencil Effect in SVG
#14also gooey effects! https://css-tricks.com/gooey-effect/ https://tympanus.net/Development/CreativeGooeyEffects/player...
It might be interesting to tune an svg filter against a ground truth like [2] - if the difference can be made small, it might be useful for educational interactives?
I wonder if one could get something complex like [3]?
[1] http://phelafel.technion.ac.il/~orcohen/h2/h2_45.gif from frame http://phelafel.technion.ac.il/~orcohen/h2.html of http://phelafel.technion.ac.il/~orcohen/DFTVisualize.html [2] https://wiki.fysik.dtu.dk/gpaw/tutorials/bader/bader.html [3] image https://i.insider.com/5249da00eab8ea2172fa799a?width=700&for... via https://www.businessinsider.com/first-images-of-a-hydrogen-b... from paywalled https://science.sciencemag.org/content/340/6139/1434.abstrac...
Re: Creating a Pencil Effect in SVG
#15Earlier quoted context omitted.
Personally I found the SVG specification very readable and understandable as well. It also has the benefit of accurately describing what the renderer should do (a lot of resources out there are outdated or inaccurate).
The problem is the spec is so massive that different renderers support different feature sets and don't always render content the same.
Re: Creating a Pencil Effect in SVG
#16also gooey effects! https://css-tricks.com/gooey-effect/ https://tympanus.net/Development/CreativeGooeyEffects/player...
Funny I discovered that effect last week in react-spring examples: https://codesandbox.io/embed/8zx4ppk01l
Perhaps one might reverse that, and chase it around the box, forcing fusion?
Re: Creating a Pencil Effect in SVG
#17Earlier quoted context omitted.
The problem is the spec is so massive that different renderers support different feature sets and don't always render content the same.
As long as you target web browsers, things generally work out fine, in my experience, with very few gaps in the feature set. Bugs, however ... Safari is seemingly constantly broken (as was Edge until a year ago or so, but then they scrapped EdgeHTML anyway), Chrome and Firefox sometimes seem to compete on who will break things the most in trying to make rendering faster (as long as rendering doesn't have to be correc…
Re: Creating a Pencil Effect in SVG
#18Re: Creating a Pencil Effect in SVG
#19also gooey effects! https://css-tricks.com/gooey-effect/ https://tympanus.net/Development/CreativeGooeyEffects/player...
Re: Creating a Pencil Effect in SVG
#20What's up with all the bitmap images. Was expecting to see at least one SVG image.