Does anyone know a working solution ? 3d party maybe? Maybe a spline guide approach like in Zbrush or 3d coat?. I mean to paint a rope for example ?
Also can SPainter use a long pattern image for such a brush rolling out alone a brush stroke also like Zbrush or 3dcoat or Corel PAinter or it always should be square?
Replies
eg. this (not particularly a recommendation, just the first one i remember seeing)
https://www.artstation.com/artwork/9dk2o
not sure if there's a good pixel processor version released but it's not exactly rocket science (a bezier curve is just a stack of lerps) - if you're interested i've got a simple sd-sex implementation you're welcome to have the code for
painter brushes can be any aspect ratio but at least on the pre-green versions you are limited to stamping your alpha at set distances along the stroke (as per photoshop) and there's no way to access the brushes through the javascript API
short answer - dont think it's possible
however ,
this sd-sex expression will plot <n> points a bezier defined by 4 control points.
this will plot 5 points, afaik you can't use a variable to define the length of a loop in this
if you add more points you get a smoother curve - delta should = 1/(numberofpoints-1)
there is a simpler to understand method of implementing a bezier by stacking lerps but you can google for that (coding train has a nice video)
you need sd-sex installed, which is here....
https://github.com/igor-elovikov/sd-sex
it will change your life