phoboslab / WebGLImageFilter

Fast image filters for Browsers with WebGL support
MIT License
332 stars 62 forks source link

About variable's name: "size" #3

Closed finscn closed 4 years ago

finscn commented 10 years ago

In many image-edit-tools , the blur has an agrument named "radius"

I found in WebGLImageFilter, there is a variable named "size" , blurSize.

I want know whether the size equals the radius . or size == 2 * radius ?

if size==radius , could you change the "size" to "radius" ? because "radius" is more generic .

thanks.