Simulating brush strokes for painting application

前端 未结 4 1197
挽巷
挽巷 2021-01-31 06:27

I\'m trying to write an application that can be used to create pictures that look like paintings using simulated brush strokes. Are there any good sources for simple ways of sim

4条回答
  •  情深已故
    2021-01-31 06:39

    Here's a classic from 1989 - Dynadraw, by Paul Haeberli. It uses a simple dynamical model to fill in a smooth the raw mouse positions.

    While the strokes are drawn incrementally as polygons, you should be able to use the points generated by the dynamic filter to place copies of your brush texture.

提交回复
热议问题